From d2d0d2f8e454e8ed437159cc7d1c8e08dc8fa451 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Mon, 26 May 2025 09:36:46 +0200 Subject: [PATCH 1/2] feat(mongodb): read instance private ips --- docs/resources/mongodb_instance.md | 3 + internal/services/mongodb/instance.go | 76 +- internal/services/mongodb/instance_test.go | 6 + ...tance-update-private-network.cassette.yaml | 3395 +++++++++++------ ...nstance-with-private-network.cassette.yaml | 2177 ++++++++--- 5 files changed, 4144 insertions(+), 1513 deletions(-) diff --git a/docs/resources/mongodb_instance.md b/docs/resources/mongodb_instance.md index 5ede674bb6..01b358e6e0 100644 --- a/docs/resources/mongodb_instance.md +++ b/docs/resources/mongodb_instance.md @@ -119,6 +119,9 @@ In addition to all arguments above, the following attributes are exported: - `ips` - List of IP addresses for your endpoint. - `port` - TCP port of the endpoint. - `dns_records` - List of DNS records for your endpoint. +- `private_ip` - The private IPv4 address associated with the instance. + - `id` - The ID of the IPv4 address resource. + - `address` - The private IPv4 address. - `public_network` - Private Network endpoints of the Database Instance. - `id` - The ID of the endpoint. - `port` - TCP port of the endpoint. diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index a6b2907165..dddefa93cc 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -3,11 +3,14 @@ package mongodb import ( "context" "errors" + "fmt" "time" + "github.com/hashicorp/go-cty/cty" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" + ipamAPI "github.com/scaleway/scaleway-sdk-go/api/ipam/v1" mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" @@ -16,6 +19,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/ipam" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" ) @@ -152,6 +156,26 @@ func ResourceInstance() *schema.Resource { }, }, // Computed + "private_ip": { + Type: schema.TypeList, + Computed: true, + Optional: true, + Description: "The private IPv4 address associated with the resource", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Computed: true, + Description: "The ID of the IPv4 address resource", + }, + "address": { + Type: schema.TypeString, + Computed: true, + Description: "The private IPv4 address", + }, + }, + }, + }, "public_network": { Type: schema.TypeList, Optional: true, @@ -362,10 +386,60 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interfa _ = d.Set("public_network", publicNetworkEndpoint) } + diags := diag.Diagnostics{} + privateIPs := []map[string]interface{}(nil) + authorized := true + privateNetworkEndpoint, privateNetworkExists := flattenPrivateNetwork(instance.Endpoints) if privateNetworkExists { _ = d.Set("private_network", privateNetworkEndpoint) + + for _, endpoint := range instance.Endpoints { + if endpoint.PrivateNetwork == nil { + continue + } + + resourceType := ipamAPI.ResourceTypeMgdbInstance + opts := &ipam.GetResourcePrivateIPsOptions{ + ResourceID: &instance.ID, + ResourceType: &resourceType, + PrivateNetworkID: &endpoint.PrivateNetwork.PrivateNetworkID, + ProjectID: &instance.ProjectID, + } + + endpointPrivateIPs, err := ipam.GetResourcePrivateIPs(ctx, m, region, opts) + + switch { + case err == nil: + privateIPs = append(privateIPs, endpointPrivateIPs...) + case httperrors.Is403(err): + authorized = false + + diags = append(diags, diag.Diagnostic{ + Severity: diag.Warning, + Summary: "Unauthorized to read MongoDB Instance's private IP, please check your IAM permissions", + Detail: err.Error(), + AttributePath: cty.GetAttrPath("private_ip"), + }) + default: + diags = append(diags, diag.Diagnostic{ + Severity: diag.Warning, + Summary: fmt.Sprintf("Unable to get private IP for instance %q", instance.Name), + Detail: err.Error(), + AttributePath: cty.GetAttrPath("private_ip"), + }) + } + + if !authorized { + break + } + + } + } + + if authorized { + _ = d.Set("private_ip", privateIPs) } if len(instance.Settings) > 0 { @@ -377,7 +451,7 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interfa _ = d.Set("settings", settingsMap) } - return nil + return diags } func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 50b4d5eda0..3bdf0948bb 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -245,6 +245,8 @@ func TestAccMongoDBInstance_WithPrivateNetwork(t *testing.T) { resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.id"), resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.port"), resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.dns_records.0"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_ip.0.id"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_ip.0.address"), ), }, }, @@ -309,6 +311,8 @@ func TestAccMongoDBInstance_UpdatePrivateNetwork(t *testing.T) { resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "private_network.#", "1"), resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.pn_id"), resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_ip.0.id"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_ip.0.address"), ), }, { @@ -341,6 +345,8 @@ func TestAccMongoDBInstance_UpdatePrivateNetwork(t *testing.T) { resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "private_network.#", "1"), resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.pn_id"), resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_ip.0.id"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_ip.0.address"), ), }, { diff --git a/internal/services/mongodb/testdata/mongo-db-instance-update-private-network.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-update-private-network.cassette.yaml index f662309fec..29de302979 100644 --- a/internal/services/mongodb/testdata/mongo-db-instance-update-private-network.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-instance-update-private-network.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 110 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"update_private_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1022" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:17 GMT + - Sun, 25 May 2025 20:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75b63899-870e-4130-9c75-6d01df1f28e9 + - 189e3418-5eaf-4ac3-b749-c80e012283c4 status: 200 OK code: 200 - duration: 1.043561959s + duration: 929.219708ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1022" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:17 GMT + - Sun, 25 May 2025 20:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +97,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9636195b-4fda-43ea-95f7-9c4cbcf3991e + - 43cc3ae9-3dcb-45b9-9436-ee44432d30e8 status: 200 OK code: 200 - duration: 28.740834ms + duration: 60.865625ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 110 + content_length: 106 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"update_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"my_private_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1025" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:17 GMT + - Sun, 25 May 2025 20:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73aeeb0d-f9cb-488e-9063-93042f93a386 + - d2fe638e-b024-4765-9443-ce08abc70d0d status: 200 OK code: 200 - duration: 1.125428167s + duration: 1.01590975s - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1025" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:17 GMT + - Sun, 25 May 2025 20:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3382a468-dfc7-447a-87ce-3e11e1ee6b7b + - 7eeeffd3-854e-48c3-9afd-dc96e42e487c status: 200 OK code: 200 - duration: 24.246125ms + duration: 56.242791ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1025" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:18 GMT + - Sun, 25 May 2025 20:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 257a2ab6-1d44-4376-a90b-589cc8062dd5 + - 8519eea2-7168-4093-91b1-190f42cabd77 status: 200 OK code: 200 - duration: 78.132375ms + duration: 34.965208ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1022" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:18 GMT + - Sun, 25 May 2025 20:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8decd517-7c63-4e3a-bac7-7befbf246c53 + - f632f94d-bd55-4683-88a9-1e011b0b36bf status: 200 OK code: 200 - duration: 100.557666ms + duration: 43.057583ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1022" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:19 GMT + - Sun, 25 May 2025 20:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 042d97c2-2851-4b94-886c-b6b4f2ce09ae + - 70154ce6-645e-436d-9cc8-6c4480b1298b status: 200 OK code: 200 - duration: 29.13225ms + duration: 28.401959ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1025" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:19 GMT + - Sun, 25 May 2025 20:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8835272c-07b7-49f1-bd52-b7fe1509ad75 + - aabe6933-2b1f-43cc-b073-c1482e994768 status: 200 OK code: 200 - duration: 72.833458ms + duration: 33.496416ms - id: 8 request: proto: HTTP/1.1 @@ -408,13 +408,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-private-network","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-mongodb-private-network","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances method: POST response: @@ -425,7 +425,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:20 GMT + - Sun, 25 May 2025 20:15:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b2c0e3f-8ac6-4e84-9059-9bff66e940ef + - b61c4473-86a6-4d3c-8dd6-8394b781b295 status: 200 OK code: 200 - duration: 448.933459ms + duration: 496.88425ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:21 GMT + - Sun, 25 May 2025 20:15:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e4cb9a0-e5d2-4512-b071-69092a5ee662 + - 5905e304-19d7-454c-8cc3-90093e2a650b status: 200 OK code: 200 - duration: 68.247166ms + duration: 42.695791ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -523,7 +523,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -532,9 +532,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:31 GMT + - Sun, 25 May 2025 20:16:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d94e39ef-1c82-4a55-807e-0f38d33ff337 + - f9218520-e034-4cfb-865f-7eb4aa830c9c status: 200 OK code: 200 - duration: 95.811375ms + duration: 59.014292ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -572,7 +572,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -581,9 +581,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:41 GMT + - Sun, 25 May 2025 20:16:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ad1cd3-0400-460a-bb94-aa2b9a285f87 + - 0c81d725-0e2d-443a-b025-68f1221639af status: 200 OK code: 200 - duration: 89.963875ms + duration: 57.952708ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -621,7 +621,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -630,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:34:51 GMT + - Sun, 25 May 2025 20:16:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2233892b-6a07-4ad0-ae98-782c644448bb + - b9965a65-04f8-4a3a-ae80-6fd5395492d3 status: 200 OK code: 200 - duration: 74.891833ms + duration: 49.304542ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -670,7 +670,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -679,9 +679,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:35:01 GMT + - Sun, 25 May 2025 20:16:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec8ba79e-1149-4df0-aa8b-704d05d9a9ae + - 0d8cd446-8a77-4b3c-a08b-15a8a6ee114e status: 200 OK code: 200 - duration: 77.004417ms + duration: 54.721958ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -719,7 +719,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -728,9 +728,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:35:11 GMT + - Sun, 25 May 2025 20:16:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53eede49-36fe-4689-82b6-dc256b1465dd + - 62e4f474-2426-4265-a106-da4224ce98a6 status: 200 OK code: 200 - duration: 428.886167ms + duration: 56.869166ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -768,7 +768,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -777,9 +777,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:35:21 GMT + - Sun, 25 May 2025 20:16:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae4bbea4-bd4a-4810-961f-33c67d19aa17 + - 9ff371ef-9788-432c-b825-dfe3f987da2a status: 200 OK code: 200 - duration: 91.442208ms + duration: 54.076333ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -817,7 +817,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -826,9 +826,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:35:32 GMT + - Sun, 25 May 2025 20:17:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 738025b4-9aa6-4b9c-970d-09fa5c04fd13 + - 2c9f1565-831b-4896-b4b7-998091683518 status: 200 OK code: 200 - duration: 69.4585ms + duration: 45.652708ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -866,7 +866,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:35:42 GMT + - Sun, 25 May 2025 20:17:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4f1daeb-9061-469c-9a40-3d4929c3f98c + - b7dde87e-f7fa-4a45-8de1-444d7623d804 status: 200 OK code: 200 - duration: 88.530875ms + duration: 56.695416ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -915,7 +915,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -924,9 +924,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:35:52 GMT + - Sun, 25 May 2025 20:17:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 652d0abf-b3d7-4562-a63b-f03029a4a6ed + - fad65955-815d-47ea-a8c3-f30c4d770514 status: 200 OK code: 200 - duration: 200.726625ms + duration: 60.319542ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -964,7 +964,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -973,9 +973,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:36:02 GMT + - Sun, 25 May 2025 20:17:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d23fb4a8-a512-449f-b8b9-4a88032a8800 + - 13c9526d-6152-45b7-8582-f9da508bf452 status: 200 OK code: 200 - duration: 85.714792ms + duration: 42.000167ms - id: 20 request: proto: HTTP/1.1 @@ -1002,8 +1002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1013,7 +1013,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1022,9 +1022,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:36:12 GMT + - Sun, 25 May 2025 20:17:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f123e09f-9bf5-401e-872c-92109611d95c + - ca9721c5-30db-4762-992d-fdb2de2d7494 status: 200 OK code: 200 - duration: 68.58275ms + duration: 55.38625ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1062,7 +1062,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1071,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:36:22 GMT + - Sun, 25 May 2025 20:17:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bceb7d74-fba4-46cf-a6ae-20a5ad414584 + - e7b8fe82-4eb8-4ad5-aeed-e40c3074f181 status: 200 OK code: 200 - duration: 88.645958ms + duration: 52.69775ms - id: 22 request: proto: HTTP/1.1 @@ -1100,8 +1100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1111,7 +1111,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1120,9 +1120,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:36:32 GMT + - Sun, 25 May 2025 20:18:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9329566-5194-4b01-97f5-687f49eadb17 + - ec361f9a-1c54-42d7-9c3c-ce32e9460712 status: 200 OK code: 200 - duration: 293.400875ms + duration: 55.729542ms - id: 23 request: proto: HTTP/1.1 @@ -1149,8 +1149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1160,7 +1160,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1169,9 +1169,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:36:42 GMT + - Sun, 25 May 2025 20:18:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,10 +1179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfdd9192-b321-44b3-bb6e-a19d4335ec33 + - d95b84ce-70e7-402a-9f9c-5fcd84efca0d status: 200 OK code: 200 - duration: 83.839875ms + duration: 45.937041ms - id: 24 request: proto: HTTP/1.1 @@ -1198,8 +1198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1209,7 +1209,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1218,9 +1218,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:36:53 GMT + - Sun, 25 May 2025 20:18:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 264ed0fb-e02b-4991-aede-4df7dd3ee339 + - c8d9635c-4a32-4ee5-a68e-8387b51cda6b status: 200 OK code: 200 - duration: 80.849875ms + duration: 56.274375ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1247,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1258,7 +1258,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1267,9 +1267,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:37:03 GMT + - Sun, 25 May 2025 20:18:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5662888b-5462-41d2-9bfd-63ac6211c66b + - 14b9fab2-dce8-4581-8903-6a36d7ce416c status: 200 OK code: 200 - duration: 89.091084ms + duration: 47.503125ms - id: 26 request: proto: HTTP/1.1 @@ -1296,8 +1296,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1307,7 +1307,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1316,9 +1316,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:37:13 GMT + - Sun, 25 May 2025 20:18:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,10 +1326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d295962a-6655-4b26-aea7-1ec9f0d8548a + - b9cddd5e-fd48-43b7-9a11-8c323bb29f2d status: 200 OK code: 200 - duration: 77.506ms + duration: 58.77775ms - id: 27 request: proto: HTTP/1.1 @@ -1345,8 +1345,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1356,7 +1356,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1365,9 +1365,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:37:23 GMT + - Sun, 25 May 2025 20:18:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,10 +1375,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11efb064-f14f-4afa-b3bc-803afd845737 + - 64d95b05-8325-4f10-bc1d-678e7c715164 status: 200 OK code: 200 - duration: 80.1925ms + duration: 55.273084ms - id: 28 request: proto: HTTP/1.1 @@ -1394,8 +1394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1405,7 +1405,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1414,9 +1414,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:37:33 GMT + - Sun, 25 May 2025 20:19:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1424,10 +1424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82b8bf24-aa16-4d80-89ff-e69e1b36e516 + - aa0a33e3-f413-42df-812b-a3ff5d00af3c status: 200 OK code: 200 - duration: 113.773875ms + duration: 57.316833ms - id: 29 request: proto: HTTP/1.1 @@ -1443,8 +1443,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1454,7 +1454,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1463,9 +1463,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:37:43 GMT + - Sun, 25 May 2025 20:19:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1473,10 +1473,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e331b350-a6a7-4eec-a32c-dd32bd95ba36 + - f353398b-2883-4ef5-93f8-16067c873562 status: 200 OK code: 200 - duration: 79.917042ms + duration: 50.21475ms - id: 30 request: proto: HTTP/1.1 @@ -1492,8 +1492,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1503,7 +1503,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1512,9 +1512,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:37:53 GMT + - Sun, 25 May 2025 20:19:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1522,10 +1522,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f82806c-9435-434a-9a66-43d9d4419c89 + - ea087fcf-2540-4178-ba27-9d54d5bb57c1 status: 200 OK code: 200 - duration: 78.241625ms + duration: 64.530958ms - id: 31 request: proto: HTTP/1.1 @@ -1541,8 +1541,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1552,7 +1552,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1561,9 +1561,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:38:03 GMT + - Sun, 25 May 2025 20:19:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1571,10 +1571,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34290a11-aa90-4961-b48c-97e92f2c8d64 + - 101506e4-09c0-496b-90c8-5824f3070af2 status: 200 OK code: 200 - duration: 180.492083ms + duration: 70.917375ms - id: 32 request: proto: HTTP/1.1 @@ -1590,8 +1590,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1601,7 +1601,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1610,9 +1610,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:38:13 GMT + - Sun, 25 May 2025 20:19:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1620,10 +1620,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57d908d2-7040-4155-936a-7c1d86c67475 + - 8b78d680-6e13-4eb1-9a3d-00fef51bd44d status: 200 OK code: 200 - duration: 76.575125ms + duration: 51.552292ms - id: 33 request: proto: HTTP/1.1 @@ -1639,8 +1639,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1650,7 +1650,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1659,9 +1659,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:38:23 GMT + - Sun, 25 May 2025 20:19:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1669,10 +1669,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2216162-874c-4ba1-a020-b7a9e99d8f04 + - d64a6104-2097-4d9d-a42c-fc9a2592eb1c status: 200 OK code: 200 - duration: 97.693333ms + duration: 46.765208ms - id: 34 request: proto: HTTP/1.1 @@ -1688,8 +1688,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1699,7 +1699,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1708,9 +1708,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:38:33 GMT + - Sun, 25 May 2025 20:20:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1718,10 +1718,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f92a958-9317-4a99-b61d-a7952fd25cb4 + - 192ce42b-e7ab-4484-9be5-89a5a5528f2e status: 200 OK code: 200 - duration: 89.167125ms + duration: 70.718792ms - id: 35 request: proto: HTTP/1.1 @@ -1737,8 +1737,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1748,7 +1748,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1757,9 +1757,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:38:44 GMT + - Sun, 25 May 2025 20:20:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1767,10 +1767,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bf6787f-874b-47fa-ad09-d272519aa3bd + - 3075f515-8bad-491f-abc6-3e74ef69a90b status: 200 OK code: 200 - duration: 82.549875ms + duration: 59.187625ms - id: 36 request: proto: HTTP/1.1 @@ -1786,8 +1786,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1797,7 +1797,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1806,9 +1806,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:38:54 GMT + - Sun, 25 May 2025 20:20:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1816,10 +1816,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c93c0a07-d607-4b56-a9a1-d79f180ba431 + - a8a72738-c398-4e0e-8edf-3efaa144d6e6 status: 200 OK code: 200 - duration: 91.603625ms + duration: 49.687917ms - id: 37 request: proto: HTTP/1.1 @@ -1835,8 +1835,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1846,7 +1846,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1855,9 +1855,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:39:04 GMT + - Sun, 25 May 2025 20:20:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1865,10 +1865,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c87037e-b81b-4c92-b658-5356797ac985 + - 50a7587c-ef1f-42af-b9d4-313422032eb8 status: 200 OK code: 200 - duration: 80.227166ms + duration: 47.018292ms - id: 38 request: proto: HTTP/1.1 @@ -1884,8 +1884,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1895,7 +1895,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1904,9 +1904,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:39:14 GMT + - Sun, 25 May 2025 20:20:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1914,10 +1914,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea63bc0a-f3b2-4549-a87f-9ad19bebf82c + - 7fe19f39-731a-49cb-8bfe-490a81025943 status: 200 OK code: 200 - duration: 89.417083ms + duration: 56.020709ms - id: 39 request: proto: HTTP/1.1 @@ -1933,8 +1933,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1944,7 +1944,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1953,9 +1953,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:39:24 GMT + - Sun, 25 May 2025 20:20:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1963,10 +1963,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ebe1d33-4ab6-4c28-a6ac-4654ba8181bd + - 9617309d-ee15-4511-9c84-c6adf2d6a8b7 status: 200 OK code: 200 - duration: 73.681125ms + duration: 48.902958ms - id: 40 request: proto: HTTP/1.1 @@ -1982,8 +1982,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -1993,7 +1993,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2002,9 +2002,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:39:34 GMT + - Sun, 25 May 2025 20:21:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2012,10 +2012,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86c6a02f-76fd-4c2e-94c6-cbf151236010 + - 7bebd276-35db-44d9-8611-2d1ea699da0d status: 200 OK code: 200 - duration: 112.2205ms + duration: 51.963958ms - id: 41 request: proto: HTTP/1.1 @@ -2031,8 +2031,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2042,7 +2042,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2051,9 +2051,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:39:44 GMT + - Sun, 25 May 2025 20:21:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2061,10 +2061,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ecb22a6-0fc0-43ad-a252-780e3f6adef1 + - a0e41a51-8e53-4439-adf7-d91eccae9375 status: 200 OK code: 200 - duration: 78.238458ms + duration: 58.407041ms - id: 42 request: proto: HTTP/1.1 @@ -2080,8 +2080,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2091,7 +2091,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2100,9 +2100,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:39:54 GMT + - Sun, 25 May 2025 20:21:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2110,10 +2110,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c906b549-7f59-46b7-9c16-67f57b5ba19b + - 7c6dea73-f953-4639-b436-d08ffcb5859d status: 200 OK code: 200 - duration: 82.28775ms + duration: 56.620834ms - id: 43 request: proto: HTTP/1.1 @@ -2129,8 +2129,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2140,7 +2140,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2149,9 +2149,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:04 GMT + - Sun, 25 May 2025 20:21:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2159,10 +2159,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3e0fe88-d134-47a1-9def-f10428db798e + - f823306f-8b2f-4e88-ad70-3aefc726b062 status: 200 OK code: 200 - duration: 179.783042ms + duration: 60.713042ms - id: 44 request: proto: HTTP/1.1 @@ -2178,8 +2178,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2189,7 +2189,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2198,9 +2198,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:14 GMT + - Sun, 25 May 2025 20:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2208,10 +2208,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c701f452-f7cb-4d88-acb4-9c0f7f0f2b74 + - 1c5b9241-1dfc-497a-833b-d38b41f5f8ea status: 200 OK code: 200 - duration: 100.508542ms + duration: 44.316208ms - id: 45 request: proto: HTTP/1.1 @@ -2227,8 +2227,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2238,7 +2238,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2247,9 +2247,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:25 GMT + - Sun, 25 May 2025 20:21:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2257,10 +2257,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5838c49-bd4c-4621-b3c2-68587d31868e + - 620e3484-be50-4901-8438-1d5ffc0fa824 status: 200 OK code: 200 - duration: 90.622792ms + duration: 46.894708ms - id: 46 request: proto: HTTP/1.1 @@ -2276,8 +2276,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2287,7 +2287,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2296,9 +2296,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:35 GMT + - Sun, 25 May 2025 20:22:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2306,10 +2306,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3100f34f-72cb-43a4-a045-72ce22949c0e + - 41e7d061-7017-45d5-9c99-8b3e5393bdf0 status: 200 OK code: 200 - duration: 90.732375ms + duration: 59.068917ms - id: 47 request: proto: HTTP/1.1 @@ -2325,8 +2325,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2334,20 +2334,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:45 GMT + - Sun, 25 May 2025 20:22:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2355,10 +2355,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 591a56ae-a85f-4a4a-a115-12a62bea42ee + - 2700d7dd-7333-4908-be7f-0e0cefa8e772 status: 200 OK code: 200 - duration: 63.735667ms + duration: 40.427625ms - id: 48 request: proto: HTTP/1.1 @@ -2374,8 +2374,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2383,20 +2383,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:45 GMT + - Sun, 25 May 2025 20:22:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2404,10 +2404,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea9af1f3-5fd8-436f-b3e7-86ca1879aacf + - d32c4feb-3a4d-443d-a321-634e332fe0b1 status: 200 OK code: 200 - duration: 71.658417ms + duration: 50.329417ms - id: 49 request: proto: HTTP/1.1 @@ -2423,8 +2423,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2432,20 +2432,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:45 GMT + - Sun, 25 May 2025 20:22:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2453,10 +2453,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 273392f2-7911-4cbd-af29-1a13122643a7 + - da311bc1-d5fe-4ba3-a38e-224ac95beee5 status: 200 OK code: 200 - duration: 38.258167ms + duration: 58.132542ms - id: 50 request: proto: HTTP/1.1 @@ -2472,8 +2472,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2481,20 +2481,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1025" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:46 GMT + - Sun, 25 May 2025 20:22:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2502,10 +2502,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2553c45a-0246-45db-850a-d6316a44fe49 + - 678a3213-cafa-4d6c-b401-fe7c5a22b603 status: 200 OK code: 200 - duration: 27.761875ms + duration: 50.399208ms - id: 51 request: proto: HTTP/1.1 @@ -2521,8 +2521,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2530,20 +2530,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1022" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:46 GMT + - Sun, 25 May 2025 20:22:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2551,10 +2551,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c48f8388-3e9e-48b5-8e3a-b33c211fbc6a + - e06309c8-a0a5-4bdb-81f3-7dad3312ee73 status: 200 OK code: 200 - duration: 28.023583ms + duration: 51.029291ms - id: 52 request: proto: HTTP/1.1 @@ -2570,8 +2570,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2579,20 +2579,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:46 GMT + - Sun, 25 May 2025 20:23:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2600,10 +2600,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95a52d98-fc55-4374-b128-fab42ac4d865 + - c0a82e7b-5dec-4d13-9a1b-93f297fb4247 status: 200 OK code: 200 - duration: 80.591833ms + duration: 69.65925ms - id: 53 request: proto: HTTP/1.1 @@ -2619,8 +2619,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2628,20 +2628,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1025" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:47 GMT + - Sun, 25 May 2025 20:23:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2649,10 +2649,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0af244cb-07b7-460d-a0e9-232490afde20 + - 129118a6-7af0-40a0-99ba-dc380b5da4d9 status: 200 OK code: 200 - duration: 25.120667ms + duration: 50.477417ms - id: 54 request: proto: HTTP/1.1 @@ -2668,8 +2668,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2677,20 +2677,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1022" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:47 GMT + - Sun, 25 May 2025 20:23:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2698,10 +2698,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3501e37a-e99c-4633-95f4-15cbebd0e34b + - 13dd4208-5208-4b87-9d7a-3f8bcc6eeace status: 200 OK code: 200 - duration: 26.1515ms + duration: 53.999583ms - id: 55 request: proto: HTTP/1.1 @@ -2717,8 +2717,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2726,20 +2726,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:47 GMT + - Sun, 25 May 2025 20:23:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2747,10 +2747,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3243e3ba-dbb4-41de-88e5-c15710d0dd90 + - eb3d9573-439b-4247-a147-3fe02cecbafa status: 200 OK code: 200 - duration: 77.940041ms + duration: 50.405666ms - id: 56 request: proto: HTTP/1.1 @@ -2766,8 +2766,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2775,20 +2775,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:48 GMT + - Sun, 25 May 2025 20:23:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2796,10 +2796,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e85fae8-6ad5-4dbe-8e5f-ff8a94bc268d + - 09b91cf8-b431-4cf7-ab71-2e878ab169e9 status: 200 OK code: 200 - duration: 73.682417ms + duration: 47.111542ms - id: 57 request: proto: HTTP/1.1 @@ -2815,27 +2815,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/endpoints/7952800a-56e7-409f-b26a-60b9e325cbc6 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 617 uncompressed: false - body: "" + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: + Content-Length: + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:48 GMT + - Sun, 25 May 2025 20:23:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2843,10 +2845,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6881ce58-b118-4501-887f-6fd01d343df7 - status: 204 No Content - code: 204 - duration: 176.817958ms + - 42930341-d66f-4821-b7d8-b7c3df8d3f90 + status: 200 OK + code: 200 + duration: 48.758209ms - id: 58 request: proto: HTTP/1.1 @@ -2862,8 +2864,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2871,20 +2873,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.0af18196-c0e2-4282-8ba4-7826f987f8e4.internal"],"id":"7952800a-56e7-409f-b26a-60b9e325cbc6","ips":[],"port":27017,"private_network":{"private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:48 GMT + - Sun, 25 May 2025 20:24:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2892,10 +2894,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ce09ba4-0c77-4861-9c5c-c66725c47c61 + - 91c77312-73a0-4f6a-b5f9-97812cbc635b status: 200 OK code: 200 - duration: 28.428375ms + duration: 61.167875ms - id: 59 request: proto: HTTP/1.1 @@ -2911,8 +2913,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -2920,20 +2922,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "362" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:58 GMT + - Sun, 25 May 2025 20:24:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2941,50 +2943,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73cdeecd-47c3-4364-98b0-1cbbe3c04630 + - 338e954a-2c41-4361-856e-ba0e7a8efe8b status: 200 OK code: 200 - duration: 67.98075ms + duration: 55.350042ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 147 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"instance_id":"d0665b47-9007-4641-82fd-02eb3a52049f","endpoint":{"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/endpoints - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 248 + content_length: 617 uncompressed: false - body: '{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "248" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:58 GMT + - Sun, 25 May 2025 20:24:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2992,10 +2992,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79ee85e8-def5-46a7-95f9-949fab425be4 + - 9d0f9c7a-1506-440b-810c-ecf7ed874202 status: 200 OK code: 200 - duration: 310.98125ms + duration: 65.575167ms - id: 61 request: proto: HTTP/1.1 @@ -3011,8 +3011,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3020,20 +3020,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:40:59 GMT + - Sun, 25 May 2025 20:24:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3041,10 +3041,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de01c722-cf99-4425-af0a-823b188b4a40 + - 14f306c4-b90f-46e2-a665-12d023fe4d48 status: 200 OK code: 200 - duration: 78.481167ms + duration: 61.191041ms - id: 62 request: proto: HTTP/1.1 @@ -3060,8 +3060,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3069,20 +3069,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:41:09 GMT + - Sun, 25 May 2025 20:24:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3090,10 +3090,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c2ff985-333e-470a-9055-fab371df299b + - 9a52c0c0-c44b-44ed-8aa3-5affbb32cd53 status: 200 OK code: 200 - duration: 78.154625ms + duration: 53.099875ms - id: 63 request: proto: HTTP/1.1 @@ -3109,8 +3109,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3118,20 +3118,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:41:19 GMT + - Sun, 25 May 2025 20:24:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3139,10 +3139,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3172e315-4594-4379-89b6-8b017d11ea60 + - 2c168c78-3ff2-44a5-8f05-ddb57ea6da84 status: 200 OK code: 200 - duration: 78.887458ms + duration: 45.686084ms - id: 64 request: proto: HTTP/1.1 @@ -3158,8 +3158,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3167,20 +3167,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:41:29 GMT + - Sun, 25 May 2025 20:25:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3188,10 +3188,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65b44845-ff65-4346-ade4-bdf7ee06c6f8 + - ce7ccba6-5143-4f5b-9672-97e5134898fd status: 200 OK code: 200 - duration: 109.028334ms + duration: 56.825708ms - id: 65 request: proto: HTTP/1.1 @@ -3207,8 +3207,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3216,20 +3216,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:41:39 GMT + - Sun, 25 May 2025 20:25:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3237,10 +3237,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 019b4757-e5ce-4184-8aa2-4f38aa00823e + - 5f745bfc-0bfa-410f-9fe7-fddbed9c1296 status: 200 OK code: 200 - duration: 91.732917ms + duration: 62.324417ms - id: 66 request: proto: HTTP/1.1 @@ -3256,8 +3256,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3265,20 +3265,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:41:49 GMT + - Sun, 25 May 2025 20:25:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3286,10 +3286,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52db857c-3f62-4c2f-9692-3b39e6e15382 + - a4c90f3d-27b3-4c3d-a053-7529f8d83ce2 status: 200 OK code: 200 - duration: 75.074625ms + duration: 41.869917ms - id: 67 request: proto: HTTP/1.1 @@ -3305,8 +3305,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3314,20 +3314,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:41:59 GMT + - Sun, 25 May 2025 20:25:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3335,10 +3335,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec100fe7-d837-48e1-b66f-b5d3a40f1e77 + - 657dfe22-cc6c-4da0-8683-66e4406593da status: 200 OK code: 200 - duration: 80.801292ms + duration: 61.355875ms - id: 68 request: proto: HTTP/1.1 @@ -3354,8 +3354,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3363,20 +3363,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:42:09 GMT + - Sun, 25 May 2025 20:25:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3384,10 +3384,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c91c5ace-e817-40da-9b0a-8d280457da6e + - 5bc8fb0b-ee48-41f3-81cb-da4dec57d107 status: 200 OK code: 200 - duration: 70.210541ms + duration: 51.815667ms - id: 69 request: proto: HTTP/1.1 @@ -3403,8 +3403,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3412,20 +3412,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:42:19 GMT + - Sun, 25 May 2025 20:25:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3433,10 +3433,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f05a929b-3113-4e47-b1e3-22f6cad2ab45 + - 4cc75cc9-cd76-4d57-a0e1-63db047248a1 status: 200 OK code: 200 - duration: 81.49625ms + duration: 61.058292ms - id: 70 request: proto: HTTP/1.1 @@ -3452,8 +3452,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3461,20 +3461,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:42:29 GMT + - Sun, 25 May 2025 20:26:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3482,10 +3482,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d1f0a9c-90b4-454f-a78a-0311615ee677 + - a783a881-88c5-46a6-af54-648069fc5ca7 status: 200 OK code: 200 - duration: 72.992709ms + duration: 56.699625ms - id: 71 request: proto: HTTP/1.1 @@ -3501,8 +3501,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3510,20 +3510,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:42:39 GMT + - Sun, 25 May 2025 20:26:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3531,10 +3531,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aef4940-6852-4898-8a2c-a0ab5dffb424 + - b57307eb-0110-464f-ac50-703e5a0e6617 status: 200 OK code: 200 - duration: 203.613834ms + duration: 56.546583ms - id: 72 request: proto: HTTP/1.1 @@ -3550,8 +3550,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3559,20 +3559,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:42:50 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3580,10 +3580,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ef735bd-36a2-4be2-bc29-845707c7130f + - d621ad91-fc2f-4b07-8a50-d70161e43d88 status: 200 OK code: 200 - duration: 68.633709ms + duration: 53.771417ms - id: 73 request: proto: HTTP/1.1 @@ -3599,8 +3599,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3608,20 +3608,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:43:00 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3629,10 +3629,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e41dbe3c-984d-4d40-a6c5-65492e00f703 + - e0566f1a-2ca6-4fdf-aca8-aa010daf5225 status: 200 OK code: 200 - duration: 70.605792ms + duration: 51.687125ms - id: 74 request: proto: HTTP/1.1 @@ -3648,8 +3648,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=43f4364b-8eea-4133-a0db-b4a86af1396d&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=7beaad1b-64b4-4d3e-89fa-89ff37b16cdd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -3657,20 +3657,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 515 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.16.60.2/22","created_at":"2025-05-25T20:23:05.386624Z","id":"48827259-6694-46e2-a704-c90c936dcb43","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","mac_address":null,"name":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"5ba7cc1c-a0da-477e-b526-0b4109e21872"},"tags":[],"updated_at":"2025-05-25T20:23:05.386624Z","zone":null}],"total_count":1}' headers: Content-Length: - - "616" + - "515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:43:10 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3678,10 +3678,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23bf8037-50d5-4d3a-af41-e8301edf1fdf + - 4857d098-f5fb-4c64-aa9b-e7a4db81dcb3 status: 200 OK code: 200 - duration: 88.662959ms + duration: 80.257792ms - id: 75 request: proto: HTTP/1.1 @@ -3697,8 +3697,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3706,20 +3706,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:43:20 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3727,10 +3727,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8d8055e-2e23-4bf5-8b6a-dbf87640cffe + - 8513802e-db14-44d6-872c-8b11e310d0e1 status: 200 OK code: 200 - duration: 97.615167ms + duration: 24.614083ms - id: 76 request: proto: HTTP/1.1 @@ -3746,8 +3746,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae method: GET response: proto: HTTP/2.0 @@ -3755,20 +3755,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "616" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:43:30 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3776,10 +3776,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df4053f2-7ced-45d9-8d70-d5bd81d35027 + - 97565460-6fde-41f4-816c-e98a4c47824c status: 200 OK code: 200 - duration: 81.840667ms + duration: 29.327834ms - id: 77 request: proto: HTTP/1.1 @@ -3795,8 +3795,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d method: GET response: proto: HTTP/2.0 @@ -3804,20 +3804,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "616" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:43:40 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3825,10 +3825,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cda4be17-0ae3-4dc5-8209-c067b81a3833 + - 0689163a-7c82-422f-bdac-4de44111e353 status: 200 OK code: 200 - duration: 205.915917ms + duration: 33.230834ms - id: 78 request: proto: HTTP/1.1 @@ -3844,8 +3844,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -3853,20 +3853,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:43:50 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3874,10 +3874,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d06ef86e-2302-4f76-bd87-4d9cbb285638 + - ab048c95-b3ea-4be7-9040-d4ef833b5538 status: 200 OK code: 200 - duration: 70.77475ms + duration: 27.524333ms - id: 79 request: proto: HTTP/1.1 @@ -3893,8 +3893,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=43f4364b-8eea-4133-a0db-b4a86af1396d&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=7beaad1b-64b4-4d3e-89fa-89ff37b16cdd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -3902,20 +3902,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 515 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.16.60.2/22","created_at":"2025-05-25T20:23:05.386624Z","id":"48827259-6694-46e2-a704-c90c936dcb43","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","mac_address":null,"name":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"5ba7cc1c-a0da-477e-b526-0b4109e21872"},"tags":[],"updated_at":"2025-05-25T20:23:05.386624Z","zone":null}],"total_count":1}' headers: Content-Length: - - "616" + - "515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:44:00 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3923,10 +3923,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1cc7a9b-f6cb-4a10-b909-e4011bfc5a17 + - b6113876-0c1e-4b1d-b03c-ef45a38adc8e status: 200 OK code: 200 - duration: 71.692208ms + duration: 45.726334ms - id: 80 request: proto: HTTP/1.1 @@ -3942,8 +3942,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae method: GET response: proto: HTTP/2.0 @@ -3951,20 +3951,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "616" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:44:10 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3972,10 +3972,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8899411-45bd-4f4c-9136-44d9653c810d + - 957707cc-d1bf-4da3-a892-5af4c3652487 status: 200 OK code: 200 - duration: 100.025292ms + duration: 25.9785ms - id: 81 request: proto: HTTP/1.1 @@ -3991,8 +3991,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d method: GET response: proto: HTTP/2.0 @@ -4000,20 +4000,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "616" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:44:20 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4021,10 +4021,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef0954fe-f824-4313-93ea-2b6f87b47dc2 + - a23c94bd-d8c3-4880-bf52-7f2004991687 status: 200 OK code: 200 - duration: 95.414875ms + duration: 27.119791ms - id: 82 request: proto: HTTP/1.1 @@ -4040,8 +4040,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4049,20 +4049,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:44:31 GMT + - Sun, 25 May 2025 20:26:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4070,10 +4070,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03959f8c-410e-4233-88db-dc83064912b4 + - ee5edba1-7d76-410e-84e5-ca6a73d55ea1 status: 200 OK code: 200 - duration: 97.788417ms + duration: 29.924709ms - id: 83 request: proto: HTTP/1.1 @@ -4089,8 +4089,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=43f4364b-8eea-4133-a0db-b4a86af1396d&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=7beaad1b-64b4-4d3e-89fa-89ff37b16cdd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -4098,20 +4098,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 515 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.16.60.2/22","created_at":"2025-05-25T20:23:05.386624Z","id":"48827259-6694-46e2-a704-c90c936dcb43","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","mac_address":null,"name":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"5ba7cc1c-a0da-477e-b526-0b4109e21872"},"tags":[],"updated_at":"2025-05-25T20:23:05.386624Z","zone":null}],"total_count":1}' headers: Content-Length: - - "616" + - "515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:44:41 GMT + - Sun, 25 May 2025 20:26:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4119,10 +4119,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e8210d3-20a8-4206-9704-00a880411250 + - 50d462b7-1104-4205-a548-6f56e715f484 status: 200 OK code: 200 - duration: 106.533708ms + duration: 42.927125ms - id: 84 request: proto: HTTP/1.1 @@ -4138,8 +4138,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4147,20 +4147,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:44:51 GMT + - Sun, 25 May 2025 20:26:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4168,10 +4168,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bdc2b1b-4504-47dd-9313-eaccb49d9641 + - 88181ef2-409c-4949-ac8a-60199f2a93c5 status: 200 OK code: 200 - duration: 84.862ms + duration: 53.195ms - id: 85 request: proto: HTTP/1.1 @@ -4187,29 +4187,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/endpoints/a6e2bc4b-5b9b-4245-81e0-45bad0a26edd + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: "" headers: - Content-Length: - - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:45:01 GMT + - Sun, 25 May 2025 20:26:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4217,10 +4215,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a8c98dc-8e8f-4285-9b6a-7433f45e6d17 - status: 200 OK - code: 200 - duration: 65.511708ms + - 807ead7b-820a-4532-a706-d225947e1e1a + status: 204 No Content + code: 204 + duration: 135.1455ms - id: 86 request: proto: HTTP/1.1 @@ -4236,8 +4234,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4247,7 +4245,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.43f4364b-8eea-4133-a0db-b4a86af1396d.internal"],"id":"a6e2bc4b-5b9b-4245-81e0-45bad0a26edd","ips":[],"port":27017,"private_network":{"private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4256,9 +4254,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:45:11 GMT + - Sun, 25 May 2025 20:26:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4266,10 +4264,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01abf2c6-5fbd-426c-b89e-f6e8bc3b67d0 + - e83c2b3d-9e58-4b66-88cb-a4bf7869955e status: 200 OK code: 200 - duration: 100.769ms + duration: 22.9575ms - id: 87 request: proto: HTTP/1.1 @@ -4285,8 +4283,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4294,20 +4292,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 362 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "616" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:45:21 GMT + - Sun, 25 May 2025 20:26:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4315,48 +4313,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dcc19c9-0bcc-4be4-a396-59125e9a5505 + - ab3ba11d-eb3a-454a-9676-a6a98f745b41 status: 200 OK code: 200 - duration: 87.572958ms + duration: 68.274292ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 147 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"instance_id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","endpoint":{"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/endpoints + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 616 + content_length: 248 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}' headers: Content-Length: - - "616" + - "248" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:45:31 GMT + - Sun, 25 May 2025 20:26:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4364,10 +4364,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac202ed1-ce28-4ffe-8ae0-595a10b86cea + - 804df487-34fa-4a9a-9658-ca3981bbe697 status: 200 OK code: 200 - duration: 72.041417ms + duration: 199.403333ms - id: 89 request: proto: HTTP/1.1 @@ -4383,8 +4383,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4394,7 +4394,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4403,9 +4403,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:45:41 GMT + - Sun, 25 May 2025 20:26:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4413,10 +4413,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d06ee9f-70de-4686-9894-5d63ec2d4161 + - c24637ff-6489-40ed-8ae7-02e4f8f41c91 status: 200 OK code: 200 - duration: 78.8205ms + duration: 55.299834ms - id: 90 request: proto: HTTP/1.1 @@ -4432,8 +4432,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4443,7 +4443,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4452,9 +4452,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:45:51 GMT + - Sun, 25 May 2025 20:26:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4462,10 +4462,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bb099b3-f1c3-4aef-9370-dcebdd2cb74f + - 6c1b4d77-2513-47aa-a10e-03c53a13ee9c status: 200 OK code: 200 - duration: 77.957917ms + duration: 67.133917ms - id: 91 request: proto: HTTP/1.1 @@ -4481,8 +4481,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4492,7 +4492,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4501,9 +4501,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:46:01 GMT + - Sun, 25 May 2025 20:26:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4511,10 +4511,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 877d2fe5-367e-4346-8efd-7f5f182e259d + - b19bbd3e-ddb7-4198-8a85-fa20edf77e12 status: 200 OK code: 200 - duration: 78.997958ms + duration: 62.7855ms - id: 92 request: proto: HTTP/1.1 @@ -4530,8 +4530,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4541,7 +4541,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4550,9 +4550,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:46:11 GMT + - Sun, 25 May 2025 20:27:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4560,10 +4560,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39406c18-9a80-484c-846c-a771150ad0f3 + - 9a245d72-d444-4c63-9764-d9515f1e818c status: 200 OK code: 200 - duration: 82.854958ms + duration: 55.676958ms - id: 93 request: proto: HTTP/1.1 @@ -4579,8 +4579,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4590,7 +4590,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4599,9 +4599,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:46:21 GMT + - Sun, 25 May 2025 20:27:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4609,10 +4609,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12f9c0ca-aa41-42fb-85f8-e1dd7c9d452f + - 9e83377f-76cf-4f9a-b76b-3818d3070036 status: 200 OK code: 200 - duration: 82.415542ms + duration: 44.659375ms - id: 94 request: proto: HTTP/1.1 @@ -4628,8 +4628,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4639,7 +4639,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4648,9 +4648,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:46:32 GMT + - Sun, 25 May 2025 20:27:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4658,10 +4658,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86dee187-f0a5-40b0-8ff0-5498549b838c + - 5ceec115-5f5c-40cb-ad8b-31331986522b status: 200 OK code: 200 - duration: 92.752292ms + duration: 50.098708ms - id: 95 request: proto: HTTP/1.1 @@ -4677,8 +4677,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4688,7 +4688,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4697,9 +4697,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:46:42 GMT + - Sun, 25 May 2025 20:27:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4707,10 +4707,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - defe8091-3d62-4b0a-af84-e25a1c20a293 + - 88b6131a-0e28-4199-8798-bb1ec17e14e7 status: 200 OK code: 200 - duration: 82.223917ms + duration: 54.753416ms - id: 96 request: proto: HTTP/1.1 @@ -4726,8 +4726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4737,7 +4737,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4746,9 +4746,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:46:52 GMT + - Sun, 25 May 2025 20:27:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4756,10 +4756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 994ec55d-ee2c-42eb-8e1f-b02475ae0e53 + - d5eeec87-5a20-42f1-a16d-db6e623bb09f status: 200 OK code: 200 - duration: 81.222708ms + duration: 59.434875ms - id: 97 request: proto: HTTP/1.1 @@ -4775,8 +4775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4786,7 +4786,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4795,9 +4795,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:47:02 GMT + - Sun, 25 May 2025 20:27:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4805,10 +4805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aed0a3c8-ab6a-4d4b-a48e-fcb069ac4243 + - 9a7fbe6b-594c-4d0b-b313-9326d5a3464b status: 200 OK code: 200 - duration: 75.272667ms + duration: 58.876958ms - id: 98 request: proto: HTTP/1.1 @@ -4824,8 +4824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4835,7 +4835,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4844,9 +4844,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:47:12 GMT + - Sun, 25 May 2025 20:28:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4854,10 +4854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 928f3ccd-b73a-4306-ab35-f60d65902a85 + - 496f7a1b-48f6-425b-80ec-ad398346bdf7 status: 200 OK code: 200 - duration: 82.695ms + duration: 69.699167ms - id: 99 request: proto: HTTP/1.1 @@ -4873,8 +4873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4884,7 +4884,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4893,9 +4893,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:47:22 GMT + - Sun, 25 May 2025 20:28:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4903,10 +4903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c3b2483-669b-4e2a-bf12-2a070df33b50 + - cd93815d-8f3a-47cd-be90-f8572f95367c status: 200 OK code: 200 - duration: 115.193542ms + duration: 64.140791ms - id: 100 request: proto: HTTP/1.1 @@ -4922,8 +4922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4933,7 +4933,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4942,9 +4942,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:47:32 GMT + - Sun, 25 May 2025 20:28:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4952,10 +4952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6805d952-9556-4e2c-bf22-2bd7f38f34c6 + - 759ff0eb-46d0-495d-a03b-bbf5ea089004 status: 200 OK code: 200 - duration: 85.3345ms + duration: 61.911209ms - id: 101 request: proto: HTTP/1.1 @@ -4971,8 +4971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -4982,7 +4982,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -4991,9 +4991,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:47:42 GMT + - Sun, 25 May 2025 20:28:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5001,10 +5001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d506473d-9f62-41e2-acf3-d8d1bb408f6b + - f8e4c006-d8b4-4d93-bfe6-7a2aaa22a2bc status: 200 OK code: 200 - duration: 82.929833ms + duration: 52.842084ms - id: 102 request: proto: HTTP/1.1 @@ -5020,8 +5020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5031,7 +5031,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -5040,9 +5040,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:47:52 GMT + - Sun, 25 May 2025 20:28:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5050,10 +5050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4ad9d24-651e-4656-899f-68d74ad0fe76 + - 53b47190-1eb5-4078-a7bd-c4731208d236 status: 200 OK code: 200 - duration: 87.404ms + duration: 66.121166ms - id: 103 request: proto: HTTP/1.1 @@ -5069,8 +5069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5078,20 +5078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:02 GMT + - Sun, 25 May 2025 20:28:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5099,10 +5099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa02e1fe-6b88-476e-8ef1-aa0980951bf5 + - c802a331-291b-4d7d-b2b8-0cb05ee48e1f status: 200 OK code: 200 - duration: 70.244417ms + duration: 58.483125ms - id: 104 request: proto: HTTP/1.1 @@ -5118,8 +5118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5127,20 +5127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:02 GMT + - Sun, 25 May 2025 20:29:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5148,10 +5148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17a73107-cd3f-40ca-97e4-4f273e6951f4 + - 8523ae62-0dfb-48c7-bbd9-8eef92892c94 status: 200 OK code: 200 - duration: 110.26375ms + duration: 56.403834ms - id: 105 request: proto: HTTP/1.1 @@ -5167,8 +5167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5176,20 +5176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:03 GMT + - Sun, 25 May 2025 20:29:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5197,10 +5197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45e0ad8e-4a89-4cd5-be89-5dfcf546c544 + - a030a7a5-dc30-414a-b526-0cb93e7670dc status: 200 OK code: 200 - duration: 26.622041ms + duration: 53.945833ms - id: 106 request: proto: HTTP/1.1 @@ -5216,8 +5216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5225,20 +5225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1022" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:03 GMT + - Sun, 25 May 2025 20:29:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5246,10 +5246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68c71ab7-1a4a-442b-8523-9e8d107aa368 + - aeb0495d-58e1-484a-b096-6d801e4670cc status: 200 OK code: 200 - duration: 28.353458ms + duration: 46.55325ms - id: 107 request: proto: HTTP/1.1 @@ -5265,8 +5265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5274,20 +5274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1025" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:03 GMT + - Sun, 25 May 2025 20:29:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5295,10 +5295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 934e92ed-9202-4e66-8421-7a2061e27ff4 + - d463a1dd-b2c4-4e25-bfc8-2e9685c840b6 status: 200 OK code: 200 - duration: 70.34375ms + duration: 51.856542ms - id: 108 request: proto: HTTP/1.1 @@ -5314,8 +5314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5323,20 +5323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:04 GMT + - Sun, 25 May 2025 20:29:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5344,10 +5344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1df4c49d-53f8-4547-a143-c73fd75e3d31 + - 641d30c8-3e45-4da2-ace2-2ba831ffc77f status: 200 OK code: 200 - duration: 285.099083ms + duration: 57.476125ms - id: 109 request: proto: HTTP/1.1 @@ -5363,8 +5363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5372,20 +5372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1022" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:05 GMT + - Sun, 25 May 2025 20:29:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5393,10 +5393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac1e1121-9973-4a89-acf8-09401e2e9e8c + - 4d1de19c-dd46-4cdd-a9a3-72de4b2ea3b5 status: 200 OK code: 200 - duration: 26.22925ms + duration: 41.787208ms - id: 110 request: proto: HTTP/1.1 @@ -5412,8 +5412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5421,20 +5421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1025" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:05 GMT + - Sun, 25 May 2025 20:30:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5442,10 +5442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c685ef8-9a73-4dc5-a6bb-30bf19a9b5ed + - dd67f3d2-2dbd-4f51-b8e6-522e993f27a5 status: 200 OK code: 200 - duration: 29.32075ms + duration: 46.843541ms - id: 111 request: proto: HTTP/1.1 @@ -5461,8 +5461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5470,20 +5470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:05 GMT + - Sun, 25 May 2025 20:30:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5491,10 +5491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1db303a3-f745-4e28-9e68-ec77a0970944 + - 3f316193-45d7-46b4-95f9-c5028cc43a62 status: 200 OK code: 200 - duration: 79.062167ms + duration: 62.030375ms - id: 112 request: proto: HTTP/1.1 @@ -5510,8 +5510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5519,20 +5519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:06 GMT + - Sun, 25 May 2025 20:30:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5540,10 +5540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec5a7b30-555b-428f-ba34-4a4bdbde1f6a + - c75093a3-343b-44a7-846f-cb75179a97af status: 200 OK code: 200 - duration: 74.922625ms + duration: 48.506916ms - id: 113 request: proto: HTTP/1.1 @@ -5559,27 +5559,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/endpoints/13beff40-d398-407a-95c9-0d4b80875588 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 616 uncompressed: false - body: "" + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: + Content-Length: + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:06 GMT + - Sun, 25 May 2025 20:30:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5587,10 +5589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 697b6fb3-296c-4a76-8d68-b0bcea1adfe2 - status: 204 No Content - code: 204 - duration: 205.832083ms + - 432281fe-89ee-4414-bfcd-4d70f9870df6 + status: 200 OK + code: 200 + duration: 43.912875ms - id: 114 request: proto: HTTP/1.1 @@ -5606,8 +5608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5617,7 +5619,7 @@ interactions: trailer: {} content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[{"dns_records":["d0665b47-9007-4641-82fd-02eb3a52049f.949a59cd-0443-4883-8e5f-02d176cc155f.internal"],"id":"13beff40-d398-407a-95c9-0d4b80875588","ips":[],"port":27017,"private_network":{"private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f"}}],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "616" @@ -5626,9 +5628,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:06 GMT + - Sun, 25 May 2025 20:30:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5636,10 +5638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b463440a-10dd-4b75-8359-513d5055f897 + - 3d2cdea6-e810-4c82-ba2d-61cc87c03299 status: 200 OK code: 200 - duration: 26.865292ms + duration: 52.639583ms - id: 115 request: proto: HTTP/1.1 @@ -5655,8 +5657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5664,20 +5666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "362" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:16 GMT + - Sun, 25 May 2025 20:30:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5685,10 +5687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2834b4db-e6d1-4665-a892-27766b32b851 + - ef33207f-3f58-49f0-b4fe-ef227c79fe50 status: 200 OK code: 200 - duration: 64.911375ms + duration: 56.480208ms - id: 116 request: proto: HTTP/1.1 @@ -5704,8 +5706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5713,20 +5715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "362" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:16 GMT + - Sun, 25 May 2025 20:31:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5734,10 +5736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14fd964f-c519-4911-aaaf-d442921b7ece + - 4d48c625-56fe-4f6a-be99-8a177296da2f status: 200 OK code: 200 - duration: 64.141083ms + duration: 53.394667ms - id: 117 request: proto: HTTP/1.1 @@ -5753,8 +5755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5762,20 +5764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 616 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "362" + - "616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:16 GMT + - Sun, 25 May 2025 20:31:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5783,10 +5785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9db10df-e084-49e7-8b7c-8a9cc1f07691 + - ed3b9ff5-1837-4da4-a40e-1661a9d1aceb status: 200 OK code: 200 - duration: 37.980834ms + duration: 62.844792ms - id: 118 request: proto: HTTP/1.1 @@ -5802,8 +5804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5811,20 +5813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "362" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:16 GMT + - Sun, 25 May 2025 20:31:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5832,10 +5834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5ad8a3d-6a56-40ff-b72e-529b1335134d + - 94efa7c3-9482-4e69-bd0a-63f467166b04 status: 200 OK code: 200 - duration: 26.829458ms + duration: 66.365417ms - id: 119 request: proto: HTTP/1.1 @@ -5851,8 +5853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5860,20 +5862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:17.075573Z","dhcp_enabled":true,"id":"949a59cd-0443-4883-8e5f-02d176cc155f","name":"update_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:17.075573Z","id":"eae29649-dba7-446c-9162-a2ca1de5d2a6","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:17.075573Z","id":"81c838cf-94ed-45eb-a1ca-9b24fd9b5d52","private_network_id":"949a59cd-0443-4883-8e5f-02d176cc155f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:aaf4::/64","updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:17.075573Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1025" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:17 GMT + - Sun, 25 May 2025 20:31:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5881,10 +5883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e004fdf-aa2a-438d-8012-b7342ba05b86 + - 5ee00b36-a807-47d8-b24a-b30fdcfbea10 status: 200 OK code: 200 - duration: 28.620333ms + duration: 25.871458ms - id: 120 request: proto: HTTP/1.1 @@ -5900,8 +5902,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c3e333b0-30d4-4a44-8c58-25be78621eae&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=7beaad1b-64b4-4d3e-89fa-89ff37b16cdd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -5909,20 +5911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 530 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:16.968024Z","dhcp_enabled":true,"id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T14:34:16.968024Z","id":"4bd430f7-5f3f-4798-a4db-5e1bb569adae","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T14:34:16.968024Z","id":"a02ea6e8-0846-479c-8e90-83cb2e213009","private_network_id":"0af18196-c0e2-4282-8ba4-7826f987f8e4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b660::/64","updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T14:34:16.968024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-05-25T20:26:42.626471Z","id":"ede8d1f7-0456-41e9-9234-5c71ed1f02bd","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","mac_address":"02:00:00:15:AA:A5","name":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"de536282-0a6d-4d5f-9295-3a635234d244"},"tags":[],"updated_at":"2025-05-25T20:27:09.116296Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1022" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:17 GMT + - Sun, 25 May 2025 20:31:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5930,10 +5932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e98eb02f-0a71-416e-9530-753410758a65 + - 3205f383-db27-4c47-9756-3a03ad75ac6a status: 200 OK code: 200 - duration: 34.520542ms + duration: 49.14225ms - id: 121 request: proto: HTTP/1.1 @@ -5949,8 +5951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -5958,20 +5960,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "362" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:17 GMT + - Sun, 25 May 2025 20:31:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5979,10 +5981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3c808d4-0069-4c15-80af-6a4277f90492 + - 37d5cd63-d7b7-4c03-aa87-a9c68259d7d3 status: 200 OK code: 200 - duration: 81.61125ms + duration: 68.33825ms - id: 122 request: proto: HTTP/1.1 @@ -5998,8 +6000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae method: GET response: proto: HTTP/2.0 @@ -6007,20 +6009,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "362" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:18 GMT + - Sun, 25 May 2025 20:31:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6028,10 +6030,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e372c53f-5cd0-4077-8c96-94000e62114d + - 3754dd04-9c37-42fa-89bd-4a2b986c6770 status: 200 OK code: 200 - duration: 82.903292ms + duration: 23.95775ms - id: 123 request: proto: HTTP/1.1 @@ -6047,29 +6049,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "365" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:18 GMT + - Sun, 25 May 2025 20:31:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6077,10 +6079,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a89a0e3-9757-47ee-bf4f-f5735add2159 + - 9febe49b-d67a-4f57-b597-841dbd53d250 status: 200 OK code: 200 - duration: 237.026125ms + duration: 26.896458ms - id: 124 request: proto: HTTP/1.1 @@ -6096,8 +6098,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -6105,20 +6107,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "365" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:18 GMT + - Sun, 25 May 2025 20:31:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6126,10 +6128,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa94acca-3718-4dab-a923-1e0584e7d116 + - 38f50fb4-9677-4d94-b112-6f9588cb62bc status: 200 OK code: 200 - duration: 26.481083ms + duration: 28.965917ms - id: 125 request: proto: HTTP/1.1 @@ -6145,27 +6147,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/949a59cd-0443-4883-8e5f-02d176cc155f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c3e333b0-30d4-4a44-8c58-25be78621eae&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=7beaad1b-64b4-4d3e-89fa-89ff37b16cdd&resource_type=mgdb_instance + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 530 uncompressed: false - body: "" + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-05-25T20:26:42.626471Z","id":"ede8d1f7-0456-41e9-9234-5c71ed1f02bd","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","mac_address":"02:00:00:15:AA:A5","name":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"de536282-0a6d-4d5f-9295-3a635234d244"},"tags":[],"updated_at":"2025-05-25T20:27:09.116296Z","zone":null}],"total_count":1}' headers: + Content-Length: + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:20 GMT + - Sun, 25 May 2025 20:31:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6173,11 +6177,985 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5728b17e-f69f-49af-819e-81850ac447e9 + - 13130f74-bf13-473d-9420-04d4b2d007bf + status: 200 OK + code: 200 + duration: 81.556875ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 610 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "610" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 927b19d9-df54-4b88-b43d-530ddf857244 + status: 200 OK + code: 200 + duration: 24.273417ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd42b0e0-9d70-4139-9975-d010c34b71b7 + status: 200 OK + code: 200 + duration: 24.680875ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1064" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ae1ecb3-06ea-4dbf-a665-b4291ef907e5 + status: 200 OK + code: 200 + duration: 28.132917ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c3e333b0-30d4-4a44-8c58-25be78621eae&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=7beaad1b-64b4-4d3e-89fa-89ff37b16cdd&resource_type=mgdb_instance + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 530 + uncompressed: false + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-05-25T20:26:42.626471Z","id":"ede8d1f7-0456-41e9-9234-5c71ed1f02bd","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","mac_address":"02:00:00:15:AA:A5","name":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"de536282-0a6d-4d5f-9295-3a635234d244"},"tags":[],"updated_at":"2025-05-25T20:27:09.116296Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94ca04aa-affd-40af-9de8-c4f7973c88a9 + status: 200 OK + code: 200 + duration: 73.774125ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 610 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "610" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21433ad3-912a-4b85-b62c-7dfa5c742595 + status: 200 OK + code: 200 + duration: 44.801792ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/endpoints/4e377104-f9f8-432d-abd1-56442aea2b23 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 57a3ec86-0bbd-4a2f-9531-fe1b856f3950 + status: 204 No Content + code: 204 + duration: 169.635625ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 616 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[{"dns_records":["7beaad1b-64b4-4d3e-89fa-89ff37b16cdd.c3e333b0-30d4-4a44-8c58-25be78621eae.internal"],"id":"4e377104-f9f8-432d-abd1-56442aea2b23","ips":[],"port":27017,"private_network":{"private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae"}}],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"configuring","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "616" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f4ca86c-f009-4c1d-8d43-f02c51369c91 + status: 200 OK + code: 200 + duration: 24.403041ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a116c109-8983-42cb-86bd-71369cc868c1 + status: 200 OK + code: 200 + duration: 52.870666ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51b4946e-7364-45b6-80bf-83e7150b0c99 + status: 200 OK + code: 200 + duration: 51.618709ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ba01f76-94bf-4acd-b84f-cb7c7563dd29 + status: 200 OK + code: 200 + duration: 24.018041ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5685eeb1-4161-416e-bd14-014d8b09a9a3 + status: 200 OK + code: 200 + duration: 27.030083ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:50.752679Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c3e333b0-30d4-4a44-8c58-25be78621eae","name":"update_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.752679Z","id":"de536282-0a6d-4d5f-9295-3a635234d244","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.752679Z","id":"d135697f-043f-4684-a009-aa442c2ec90b","private_network_id":"c3e333b0-30d4-4a44-8c58-25be78621eae","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f625::/64","updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.752679Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7103bbf9-64ae-472a-b9d8-b91be42879c6 + status: 200 OK + code: 200 + duration: 25.761ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d4526a6-04b5-46fd-9859-36f8f94b0f67 + status: 200 OK + code: 200 + duration: 25.879875ms + - 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:50.865738Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43f4364b-8eea-4133-a0db-b4a86af1396d","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:15:50.865738Z","id":"5ba7cc1c-a0da-477e-b526-0b4109e21872","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:15:50.865738Z","id":"43eaa3e6-bb43-4084-a622-1be7800bef5c","private_network_id":"43f4364b-8eea-4133-a0db-b4a86af1396d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6147::/64","updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:15:50.865738Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1064" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c976363e-2d76-4e83-b192-4f8e1dd56f2a + status: 200 OK + code: 200 + duration: 29.309708ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb985364-dd6e-4363-827e-886bd728b29e + status: 200 OK + code: 200 + duration: 25.606625ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 365 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d1f7e31-88fa-431f-a58c-424a0b7ae095 + status: 200 OK + code: 200 + duration: 147.798917ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 365 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf5cf38f-c06d-45af-9ab5-ae8ba9f476f7 + status: 200 OK + code: 200 + duration: 26.607333ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3e333b0-30d4-4a44-8c58-25be78621eae + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa122955-5b64-4486-a209-01da6ea6bc7a status: 204 No Content code: 204 - duration: 1.425375333s - - id: 126 + duration: 1.456920542s + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43f4364b-8eea-4133-a0db-b4a86af1396d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec00423d-c94c-4a4f-92dd-c61f8cc97bda + status: 204 No Content + code: 204 + duration: 1.456951792s + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 365 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:31:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc140f66-19f3-4e80-a5a4-129210e537f1 + status: 200 OK + code: 200 + duration: 52.261ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -6192,27 +7170,127 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0af18196-c0e2-4282-8ba4-7826f987f8e4 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 365 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:32:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8edd9b5-e736-45e9-94a9-8c4f8b7c8eeb + status: 200 OK + code: 200 + duration: 50.3285ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 365 uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:32:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41ffc8d6-b152-466d-974e-93a706107e66 + status: 200 OK + code: 200 + duration: 48.251625ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 365 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:20 GMT + - Sun, 25 May 2025 20:32:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6220,11 +7298,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd56977-6aa5-4f8f-b429-fbaf15bea28c - status: 204 No Content - code: 204 - duration: 1.455814459s - - id: 127 + - 9b17d1ce-7bbb-4248-8b93-7d84b70c4b47 + status: 200 OK + code: 200 + duration: 50.4675ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -6239,8 +7317,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -6250,7 +7328,7 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "365" @@ -6259,9 +7337,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:29 GMT + - Sun, 25 May 2025 20:32:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6269,11 +7347,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27cd9736-1d28-46fa-8dfe-417f8053df0b + - 2420bbc0-6f38-42d9-8b0a-97ccc698be1e status: 200 OK code: 200 - duration: 80.496083ms - - id: 128 + duration: 55.720625ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -6288,8 +7366,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -6299,7 +7377,7 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"created_at":"2025-03-07T14:34:20.577872Z","endpoints":[],"id":"d0665b47-9007-4641-82fd-02eb3a52049f","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "365" @@ -6308,9 +7386,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:39 GMT + - Sun, 25 May 2025 20:32:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6318,11 +7396,158 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edc1d47f-6610-4344-8bae-aae0526a167d + - 5ce6e1b0-9a9b-4309-8f91-b64e29a0a0c0 status: 200 OK code: 200 - duration: 79.405625ms - - id: 129 + duration: 56.561917ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 365 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:32:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21649a38-92d7-4e54-87e9-80cc148f324f + status: 200 OK + code: 200 + duration: 53.195166ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 365 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:33:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19ebfaa6-8521-4bb9-8939-0853f658afb3 + status: 200 OK + code: 200 + duration: 67.362458ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 365 + uncompressed: false + body: '{"created_at":"2025-05-25T20:15:52.095740Z","endpoints":[],"id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:33:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1c66a904-8c7e-4d51-aaa9-1f166d173b4d + status: 200 OK + code: 200 + duration: 54.542625ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -6337,8 +7562,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -6348,7 +7573,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"d0665b47-9007-4641-82fd-02eb3a52049f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","type":"not_found"}' headers: Content-Length: - "129" @@ -6357,9 +7582,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:49 GMT + - Sun, 25 May 2025 20:33:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6367,11 +7592,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9998dde2-b1e5-4664-88f0-335f1b492c6a + - 17434c70-1396-49e5-8825-c2569b8823bf status: 404 Not Found code: 404 - duration: 41.414541ms - - id: 130 + duration: 33.494834ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -6386,8 +7611,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/d0665b47-9007-4641-82fd-02eb3a52049f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7beaad1b-64b4-4d3e-89fa-89ff37b16cdd method: GET response: proto: HTTP/2.0 @@ -6397,7 +7622,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"d0665b47-9007-4641-82fd-02eb3a52049f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"7beaad1b-64b4-4d3e-89fa-89ff37b16cdd","type":"not_found"}' headers: Content-Length: - "129" @@ -6406,9 +7631,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 14:48:49 GMT + - Sun, 25 May 2025 20:33:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6416,7 +7641,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac81b012-9b65-4103-92c3-1ecdb376f645 + - f8f11f33-a9d0-4872-9086-af0c0256760f status: 404 Not Found code: 404 - duration: 24.282458ms + duration: 24.748959ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-with-private-network.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-with-private-network.cassette.yaml index 1d4dca1601..0920a7c1d6 100644 --- a/internal/services/mongodb/testdata/mongo-db-instance-with-private-network.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-instance-with-private-network.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"my_private_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:42.488268Z","dhcp_enabled":true,"id":"e557eb3e-293e-40ca-8cca-c837b8454730","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T09:47:42.488268Z","id":"592b353e-8a4f-4822-8a1c-aa00688c5173","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T09:47:42.488268Z","id":"a553a78a-cd9b-4713-b68d-c19b57b0f444","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:fbc9::/64","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:04:01.372135Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e78e48af-1b32-42b4-b845-30b92de81b83","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:04:01.372135Z","id":"9b5e72a4-f810-400d-b7ea-9e80d87a8fe9","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:04:01.372135Z","id":"090bcd29-a5ac-4bac-9325-ab3b91f694be","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7d48::/64","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1021" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:47:43 GMT + - Sun, 25 May 2025 20:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98180772-c699-4eb7-b4b4-1c8747206f43 + - 7c609ef3-e8fa-4ba6-bdd8-b2c63efb0534 status: 200 OK code: 200 - duration: 1.145410708s + duration: 1.139319s - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e557eb3e-293e-40ca-8cca-c837b8454730 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e78e48af-1b32-42b4-b845-30b92de81b83 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:42.488268Z","dhcp_enabled":true,"id":"e557eb3e-293e-40ca-8cca-c837b8454730","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T09:47:42.488268Z","id":"592b353e-8a4f-4822-8a1c-aa00688c5173","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T09:47:42.488268Z","id":"a553a78a-cd9b-4713-b68d-c19b57b0f444","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:fbc9::/64","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:04:01.372135Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e78e48af-1b32-42b4-b845-30b92de81b83","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:04:01.372135Z","id":"9b5e72a4-f810-400d-b7ea-9e80d87a8fe9","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:04:01.372135Z","id":"090bcd29-a5ac-4bac-9325-ab3b91f694be","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7d48::/64","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1021" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:47:43 GMT + - Sun, 25 May 2025 20:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f1fd4e0-848a-46c9-8b42-2aa89f60c8d2 + - ae1493f5-95a8-4277-bc95-1e0e7d474af3 status: 200 OK code: 200 - duration: 86.047ms + duration: 62.884ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e557eb3e-293e-40ca-8cca-c837b8454730 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e78e48af-1b32-42b4-b845-30b92de81b83 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:42.488268Z","dhcp_enabled":true,"id":"e557eb3e-293e-40ca-8cca-c837b8454730","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T09:47:42.488268Z","id":"592b353e-8a4f-4822-8a1c-aa00688c5173","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T09:47:42.488268Z","id":"a553a78a-cd9b-4713-b68d-c19b57b0f444","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:fbc9::/64","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:04:01.372135Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e78e48af-1b32-42b4-b845-30b92de81b83","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:04:01.372135Z","id":"9b5e72a4-f810-400d-b7ea-9e80d87a8fe9","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:04:01.372135Z","id":"090bcd29-a5ac-4bac-9325-ab3b91f694be","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7d48::/64","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1021" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:47:44 GMT + - Sun, 25 May 2025 20:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c98d2372-350e-40b3-9fdd-f0d57e2744f3 + - c10fe05a-6a93-4343-999a-28d6c86a629d status: 200 OK code: 200 - duration: 82.671375ms + duration: 62.133375ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e557eb3e-293e-40ca-8cca-c837b8454730 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e78e48af-1b32-42b4-b845-30b92de81b83 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:42.488268Z","dhcp_enabled":true,"id":"e557eb3e-293e-40ca-8cca-c837b8454730","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T09:47:42.488268Z","id":"592b353e-8a4f-4822-8a1c-aa00688c5173","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T09:47:42.488268Z","id":"a553a78a-cd9b-4713-b68d-c19b57b0f444","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:fbc9::/64","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:04:01.372135Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e78e48af-1b32-42b4-b845-30b92de81b83","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:04:01.372135Z","id":"9b5e72a4-f810-400d-b7ea-9e80d87a8fe9","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:04:01.372135Z","id":"090bcd29-a5ac-4bac-9325-ab3b91f694be","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7d48::/64","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1021" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:47:44 GMT + - Sun, 25 May 2025 20:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a23aa48-e256-4e4a-b1f1-90be8858e269 + - 09802cbd-8244-4465-a163-db3f0bd0200a status: 200 OK code: 200 - duration: 77.878166ms + duration: 33.0565ms - id: 4 request: proto: HTTP/1.1 @@ -210,13 +210,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-private-network","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-mongodb-private-network","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances method: POST response: @@ -227,7 +227,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -236,9 +236,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:47:46 GMT + - Sun, 25 May 2025 20:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e630a26-d538-4bee-9929-18f0bfa39fe5 + - 37e4db83-689b-458f-b909-8479ff4c454d status: 200 OK code: 200 - duration: 721.019917ms + duration: 689.932292ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -276,7 +276,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -285,9 +285,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:47:46 GMT + - Sun, 25 May 2025 20:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d166b836-2657-408e-bd5b-198772c3b0cc + - 42596c11-ead1-4167-86d5-f9d53f068acd status: 200 OK code: 200 - duration: 105.8125ms + duration: 73.688041ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -325,7 +325,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:47:56 GMT + - Sun, 25 May 2025 20:04:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66facc6a-8c17-4db3-87f9-52609946f3d0 + - 8da8a024-7f24-4b77-8648-e16573abbbdb status: 200 OK code: 200 - duration: 118.843667ms + duration: 65.44725ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -374,7 +374,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -383,9 +383,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:48:06 GMT + - Sun, 25 May 2025 20:04:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63a97d0d-0c6a-43f4-a0e3-f0e190e47d2e + - 49638a19-9f6b-4c5a-ac3a-cc6fedab43d7 status: 200 OK code: 200 - duration: 104.543209ms + duration: 64.998125ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -423,7 +423,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -432,9 +432,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:48:16 GMT + - Sun, 25 May 2025 20:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 990a16a3-16db-4b15-bc5b-42c9fc16cb5e + - 92504860-1f24-4871-9f66-ef35dd275802 status: 200 OK code: 200 - duration: 80.6785ms + duration: 52.608041ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -472,7 +472,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -481,9 +481,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:48:27 GMT + - Sun, 25 May 2025 20:04:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a699c4-a967-4ef2-bca6-d59f642df26e + - d3fefd3e-908b-46cd-b2d4-279b5f582aa9 status: 200 OK code: 200 - duration: 82.7975ms + duration: 56.195583ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -521,7 +521,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -530,9 +530,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:48:37 GMT + - Sun, 25 May 2025 20:04:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4960e3a7-5160-4a42-b66d-8dc379f2c867 + - 0caf91e5-c11e-486e-8d1a-c79e6da40afb status: 200 OK code: 200 - duration: 92.481417ms + duration: 64.784208ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -570,7 +570,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -579,9 +579,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:48:47 GMT + - Sun, 25 May 2025 20:05:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 545c687e-02ad-4705-8e74-d2c9971031f8 + - 5fbb9893-4835-441e-933a-a690ea6bc6e4 status: 200 OK code: 200 - duration: 90.028708ms + duration: 76.549167ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -619,7 +619,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -628,9 +628,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:48:57 GMT + - Sun, 25 May 2025 20:05:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbed5049-38ed-4bf3-b762-b00323e9ecbf + - 59e265db-1aee-4f55-af8e-87fda8448d76 status: 200 OK code: 200 - duration: 73.782292ms + duration: 59.443917ms - id: 13 request: proto: HTTP/1.1 @@ -657,8 +657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -668,7 +668,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -677,9 +677,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:49:07 GMT + - Sun, 25 May 2025 20:05:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2d3d188-bf87-4086-abaa-a0cc59375c1d + - 8a0dab07-1f60-4537-95e7-d50c72ba8163 status: 200 OK code: 200 - duration: 87.297792ms + duration: 65.0955ms - id: 14 request: proto: HTTP/1.1 @@ -706,8 +706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -717,7 +717,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -726,9 +726,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:49:17 GMT + - Sun, 25 May 2025 20:05:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a489bc0-d5f8-4e35-9d7d-85a5f6516a7c + - ca772488-9c26-4670-8f10-030374757e0d status: 200 OK code: 200 - duration: 96.467375ms + duration: 65.218417ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -766,7 +766,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -775,9 +775,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:49:27 GMT + - Sun, 25 May 2025 20:05:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40e0d0d4-36a4-482f-a94c-d48a2f7677db + - 51840e8c-a7ad-4f66-84e8-3461d8fd473b status: 200 OK code: 200 - duration: 74.951375ms + duration: 59.902833ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -815,7 +815,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -824,9 +824,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:49:37 GMT + - Sun, 25 May 2025 20:05:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c115522e-2c2c-4951-9446-356cdbb4d552 + - 96d1badb-b37b-4879-a457-52ba54d1658b status: 200 OK code: 200 - duration: 70.36075ms + duration: 47.302959ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -864,7 +864,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -873,9 +873,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:49:47 GMT + - Sun, 25 May 2025 20:06:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94b88b3b-9348-407d-a436-c7a116a8acf1 + - a6c3367c-5dc4-4207-a743-c515fccd693a status: 200 OK code: 200 - duration: 86.589ms + duration: 57.306917ms - id: 18 request: proto: HTTP/1.1 @@ -902,8 +902,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -913,7 +913,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -922,9 +922,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:49:57 GMT + - Sun, 25 May 2025 20:06:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,10 +932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed93b44b-c985-4671-a28d-94056838c5e0 + - 8c62b90b-e808-4437-a6ca-cb245652e06f status: 200 OK code: 200 - duration: 90.575375ms + duration: 70.333333ms - id: 19 request: proto: HTTP/1.1 @@ -951,8 +951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -962,7 +962,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -971,9 +971,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:50:07 GMT + - Sun, 25 May 2025 20:06:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,10 +981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2356cd54-7045-408f-b78f-45fb3749052b + - 5ae362a9-8c94-4e9d-be82-a2c6a5d6714e status: 200 OK code: 200 - duration: 105.47925ms + duration: 60.948ms - id: 20 request: proto: HTTP/1.1 @@ -1000,8 +1000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1011,7 +1011,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1020,9 +1020,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:50:18 GMT + - Sun, 25 May 2025 20:06:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1030,10 +1030,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5858dcd3-3694-4189-afe6-dc3dfe6b9542 + - 3103f692-af06-4d1b-a592-fdfa9c69f8fe status: 200 OK code: 200 - duration: 86.644084ms + duration: 69.373084ms - id: 21 request: proto: HTTP/1.1 @@ -1049,8 +1049,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1060,7 +1060,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1069,9 +1069,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:50:28 GMT + - Sun, 25 May 2025 20:06:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,10 +1079,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e069fbe-8036-420d-ab0f-b81c2f0a665a + - abf739c9-c256-4f13-92ce-1571ec68ccf5 status: 200 OK code: 200 - duration: 105.126583ms + duration: 54.553958ms - id: 22 request: proto: HTTP/1.1 @@ -1098,8 +1098,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1109,7 +1109,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1118,9 +1118,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:50:38 GMT + - Sun, 25 May 2025 20:06:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1128,10 +1128,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aee529a7-94a7-4b98-a5ad-92ab96783cb3 + - 6fe50d47-2f48-42c0-aec3-b4ae8d7bde25 status: 200 OK code: 200 - duration: 134.979125ms + duration: 56.263917ms - id: 23 request: proto: HTTP/1.1 @@ -1147,8 +1147,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1158,7 +1158,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1167,9 +1167,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:50:48 GMT + - Sun, 25 May 2025 20:07:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1177,10 +1177,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 187a3f71-6bbb-4c55-b202-29e9a9e27a67 + - e3584b16-1566-4116-8d3f-676a27c5d2e0 status: 200 OK code: 200 - duration: 74.941875ms + duration: 56.596375ms - id: 24 request: proto: HTTP/1.1 @@ -1196,8 +1196,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1207,7 +1207,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1216,9 +1216,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:50:58 GMT + - Sun, 25 May 2025 20:07:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1226,10 +1226,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1140c74-b66a-492e-888c-2537dc8962e3 + - 118bac62-821f-41c3-8f05-d35a7b199deb status: 200 OK code: 200 - duration: 78.28725ms + duration: 54.361667ms - id: 25 request: proto: HTTP/1.1 @@ -1245,8 +1245,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1256,7 +1256,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1265,9 +1265,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:51:08 GMT + - Sun, 25 May 2025 20:07:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1275,10 +1275,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c5f9e1e-ff69-4d22-9051-de83a942dd48 + - a6f3752f-a4a3-4c11-ada5-2f4281d3b994 status: 200 OK code: 200 - duration: 81.62ms + duration: 50.858458ms - id: 26 request: proto: HTTP/1.1 @@ -1294,8 +1294,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1305,7 +1305,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1314,9 +1314,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:51:18 GMT + - Sun, 25 May 2025 20:07:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1324,10 +1324,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76aa8599-46c6-4fba-a30a-6a0ae18e87b9 + - f7effe4c-298b-4eec-8a46-327b6dce8bf1 status: 200 OK code: 200 - duration: 90.505041ms + duration: 72.097ms - id: 27 request: proto: HTTP/1.1 @@ -1343,8 +1343,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1354,7 +1354,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1363,9 +1363,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:51:28 GMT + - Sun, 25 May 2025 20:07:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1373,10 +1373,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4f7f61f-6cf1-49a5-9f0b-c66454c0598f + - 661a7a4a-103f-4000-a155-0b497391ae17 status: 200 OK code: 200 - duration: 78.953458ms + duration: 72.403458ms - id: 28 request: proto: HTTP/1.1 @@ -1392,8 +1392,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1403,7 +1403,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1412,9 +1412,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:51:38 GMT + - Sun, 25 May 2025 20:07:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1422,10 +1422,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e10d59f-30fc-4cd7-83a4-80e65a4459ec + - 2bbc40b8-a6d0-43f5-bcc4-0d271fbe3ced status: 200 OK code: 200 - duration: 105.878417ms + duration: 62.950292ms - id: 29 request: proto: HTTP/1.1 @@ -1441,8 +1441,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1452,7 +1452,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1461,9 +1461,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:51:48 GMT + - Sun, 25 May 2025 20:08:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1471,10 +1471,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b93cf001-69d6-4a5e-8607-358bf7fb106c + - 49ba2c57-cdf2-4cd0-9038-eac074eeac13 status: 200 OK code: 200 - duration: 79.344166ms + duration: 61.947917ms - id: 30 request: proto: HTTP/1.1 @@ -1490,8 +1490,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1501,7 +1501,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1510,9 +1510,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:51:58 GMT + - Sun, 25 May 2025 20:08:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1520,10 +1520,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ee8fb83-aebc-48a7-bf13-dd48696eef85 + - 25ca21a1-805e-4e2c-abcd-e5416b9c1896 status: 200 OK code: 200 - duration: 85.125959ms + duration: 62.487167ms - id: 31 request: proto: HTTP/1.1 @@ -1539,8 +1539,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1550,7 +1550,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1559,9 +1559,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:52:09 GMT + - Sun, 25 May 2025 20:08:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1569,10 +1569,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbd40299-f75e-44d6-958a-87f779c3d34a + - b6d89134-c602-44d6-8151-5e01eefceb36 status: 200 OK code: 200 - duration: 83.699667ms + duration: 54.723875ms - id: 32 request: proto: HTTP/1.1 @@ -1588,8 +1588,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1599,7 +1599,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1608,9 +1608,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:52:19 GMT + - Sun, 25 May 2025 20:08:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1618,10 +1618,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2f1bf4a-816b-499d-a5e2-d0c2a2243e22 + - 152bd4d0-630a-45b5-898d-9e8761cac668 status: 200 OK code: 200 - duration: 91.904542ms + duration: 58.18425ms - id: 33 request: proto: HTTP/1.1 @@ -1637,8 +1637,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1648,7 +1648,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1657,9 +1657,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:52:29 GMT + - Sun, 25 May 2025 20:08:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,10 +1667,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8ecf1bf-694f-4757-b3d4-757acecf3531 + - 386e9310-9d95-498f-a162-6d7cd75a8529 status: 200 OK code: 200 - duration: 78.540042ms + duration: 55.536917ms - id: 34 request: proto: HTTP/1.1 @@ -1686,8 +1686,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1697,7 +1697,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1706,9 +1706,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:52:39 GMT + - Sun, 25 May 2025 20:08:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1716,10 +1716,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0cc3bb0-9ebf-4b29-b3a0-a8429f3e89e0 + - a313ca21-a977-40e3-95ef-7970a99a377d status: 200 OK code: 200 - duration: 74.621041ms + duration: 49.321459ms - id: 35 request: proto: HTTP/1.1 @@ -1735,8 +1735,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1746,7 +1746,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1755,9 +1755,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:52:49 GMT + - Sun, 25 May 2025 20:09:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1765,10 +1765,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95010a8e-38b9-4425-a743-c02d1f30e68d + - 9021d88b-1605-47ba-ace5-fb9c3f3ba0c9 status: 200 OK code: 200 - duration: 85.613667ms + duration: 63.477833ms - id: 36 request: proto: HTTP/1.1 @@ -1784,8 +1784,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1795,7 +1795,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1804,9 +1804,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:52:59 GMT + - Sun, 25 May 2025 20:09:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1814,10 +1814,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d7d05a2-cd4c-441b-8dcc-0bc0bdf24d2c + - 2d1eafbe-53ba-4b94-a1d8-bbe30840c32a status: 200 OK code: 200 - duration: 92.263667ms + duration: 56.249792ms - id: 37 request: proto: HTTP/1.1 @@ -1833,8 +1833,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1844,7 +1844,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1853,9 +1853,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:53:09 GMT + - Sun, 25 May 2025 20:09:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1863,10 +1863,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24b356ed-0fbb-463a-922f-8940b33d6be4 + - 51d6a93f-8055-41c4-8f34-bf85928d6018 status: 200 OK code: 200 - duration: 73.877625ms + duration: 56.920333ms - id: 38 request: proto: HTTP/1.1 @@ -1882,8 +1882,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1893,7 +1893,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1902,9 +1902,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:53:19 GMT + - Sun, 25 May 2025 20:09:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1912,10 +1912,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eefc800c-26d5-4826-9421-634b3fcfd229 + - 34113e41-6d23-4dcd-bef9-c202998b7649 status: 200 OK code: 200 - duration: 102.541875ms + duration: 56.06075ms - id: 39 request: proto: HTTP/1.1 @@ -1931,8 +1931,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1942,7 +1942,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -1951,9 +1951,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:53:29 GMT + - Sun, 25 May 2025 20:09:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1961,10 +1961,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c062f30-f57c-4773-8079-3e65c3a7744f + - af0e9677-4051-442c-bc0e-d14ee61fceeb status: 200 OK code: 200 - duration: 130.548708ms + duration: 53.544ms - id: 40 request: proto: HTTP/1.1 @@ -1980,8 +1980,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -1991,7 +1991,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2000,9 +2000,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:53:39 GMT + - Sun, 25 May 2025 20:09:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2010,10 +2010,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95858657-f536-4a61-b88e-928b9e4b7dfe + - 4f42464f-ce71-4cb6-9821-f9fb2fdf5490 status: 200 OK code: 200 - duration: 93.298625ms + duration: 55.999709ms - id: 41 request: proto: HTTP/1.1 @@ -2029,8 +2029,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2040,7 +2040,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2049,9 +2049,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:53:49 GMT + - Sun, 25 May 2025 20:10:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2059,10 +2059,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 527a50e4-1c2f-425b-a1da-8d20c50c005b + - cab32bc6-1486-4fae-a866-1f2afba70c49 status: 200 OK code: 200 - duration: 85.989458ms + duration: 53.135708ms - id: 42 request: proto: HTTP/1.1 @@ -2078,8 +2078,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2089,7 +2089,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2098,9 +2098,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:00 GMT + - Sun, 25 May 2025 20:10:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2108,10 +2108,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 216e19b6-44b3-426c-b270-dcf0d5ff48c5 + - 8f184f58-be6e-4d2d-b38a-e15aca3e7791 status: 200 OK code: 200 - duration: 130.68225ms + duration: 56.365042ms - id: 43 request: proto: HTTP/1.1 @@ -2127,8 +2127,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2138,7 +2138,7 @@ interactions: trailer: {} content_length: 617 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "617" @@ -2147,9 +2147,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:10 GMT + - Sun, 25 May 2025 20:10:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2157,10 +2157,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb8cf00a-4036-4cba-a836-7143746be870 + - e52b206f-ba2e-4ea4-93af-bd6f944f3431 status: 200 OK code: 200 - duration: 99.062042ms + duration: 72.186042ms - id: 44 request: proto: HTTP/1.1 @@ -2176,8 +2176,1086 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7bad5a3-7ca5-4678-a045-5b4b10f541d2 + status: 200 OK + code: 200 + duration: 52.889417ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2faef81a-8d7d-49ee-91f3-ccb845c6658f + status: 200 OK + code: 200 + duration: 69.407041ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4270be58-b493-4a65-a9da-b8a548f22b7e + status: 200 OK + code: 200 + duration: 43.456916ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:11:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6df6382c-4fef-4f27-9459-b46f92924800 + status: 200 OK + code: 200 + duration: 63.532958ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:11:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aeeb2782-0b72-48bc-b98d-d0caf4a94f98 + status: 200 OK + code: 200 + duration: 50.101167ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:11:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41bee487-4a82-4441-b3f9-261d8c2c43af + status: 200 OK + code: 200 + duration: 54.491333ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:11:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09d28cf1-fc87-450c-885d-2ac669246306 + status: 200 OK + code: 200 + duration: 56.835875ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:11:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d176b59a-9e24-494e-b1bd-80b7d9518943 + status: 200 OK + code: 200 + duration: 42.150834ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:11:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 00d40be7-7e5e-4c9f-9c07-d16cd462f54d + status: 200 OK + code: 200 + duration: 52.754917ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:12:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a08a43a0-84e2-4e12-a5f9-38a03ae7b7e1 + status: 200 OK + code: 200 + duration: 44.289667ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:12:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d430fb8-c4b4-43af-b0bb-38347a87a084 + status: 200 OK + code: 200 + duration: 42.728666ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:12:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 95c09079-e458-46ea-8e04-77764908e700 + status: 200 OK + code: 200 + duration: 60.208792ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:12:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7106753-aab2-4c80-aafa-311e80500e81 + status: 200 OK + code: 200 + duration: 62.5015ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:12:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2c7afac-7afd-488d-b48c-6dda54bd89ca + status: 200 OK + code: 200 + duration: 56.378417ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:12:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f75acd26-2a32-4fca-b9e2-7dda8f4179f6 + status: 200 OK + code: 200 + duration: 52.949542ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:13:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b78e2d84-d3b3-4e83-8a85-2fe73a5f4fd3 + status: 200 OK + code: 200 + duration: 50.004666ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 617 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:13:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 245359ba-7196-481e-84fe-a755c0c9600d + status: 200 OK + code: 200 + duration: 40.540292ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 610 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "610" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:13:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 687b0bd1-00ab-4648-a4a6-f10c2ec004aa + status: 200 OK + code: 200 + duration: 55.034166ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 610 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "610" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:13:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d428ddc-cf16-495d-8405-b6ccdaf6a95f + status: 200 OK + code: 200 + duration: 47.940333ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=e78e48af-1b32-42b4-b845-30b92de81b83&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b5a25952-954e-4ce8-a235-83e82abca8af&resource_type=mgdb_instance + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 515 + uncompressed: false + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-05-25T20:10:17.471295Z","id":"fdc527da-de0d-4397-8645-6bd0bc650f98","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b5a25952-954e-4ce8-a235-83e82abca8af","mac_address":null,"name":"b5a25952-954e-4ce8-a235-83e82abca8af-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"9b5e72a4-f810-400d-b7ea-9e80d87a8fe9"},"tags":[],"updated_at":"2025-05-25T20:10:17.471295Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "515" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:13:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24129315-5d11-45cc-951c-80a4676e4db3 + status: 200 OK + code: 200 + duration: 87.617167ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 610 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "610" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:13:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b530a65f-dfdd-48ef-ac1c-7e1e488ecbeb + status: 200 OK + code: 200 + duration: 28.149167ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e78e48af-1b32-42b4-b845-30b92de81b83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:01.372135Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e78e48af-1b32-42b4-b845-30b92de81b83","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-05-25T20:04:01.372135Z","id":"9b5e72a4-f810-400d-b7ea-9e80d87a8fe9","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-05-25T20:04:01.372135Z","id":"090bcd29-a5ac-4bac-9325-ab3b91f694be","private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7d48::/64","updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-05-25T20:04:01.372135Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1064" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:13:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b9bed8b8-1b18-4e5f-a6fe-7401c7703185 + status: 200 OK + code: 200 + duration: 28.03225ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2187,7 +3265,7 @@ interactions: trailer: {} content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "610" @@ -2196,9 +3274,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:20 GMT + - Sun, 25 May 2025 20:13:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2206,11 +3284,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d883e9d-8c99-4fe6-aa42-863a3545651b + - a330e6e5-3ca6-4a7e-8a85-b26bed85ec47 status: 200 OK code: 200 - duration: 76.977417ms - - id: 45 + duration: 27.284959ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2225,8 +3303,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=e78e48af-1b32-42b4-b845-30b92de81b83&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b5a25952-954e-4ce8-a235-83e82abca8af&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -2234,20 +3312,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 515 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-05-25T20:10:17.471295Z","id":"fdc527da-de0d-4397-8645-6bd0bc650f98","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b5a25952-954e-4ce8-a235-83e82abca8af","mac_address":null,"name":"b5a25952-954e-4ce8-a235-83e82abca8af-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"9b5e72a4-f810-400d-b7ea-9e80d87a8fe9"},"tags":[],"updated_at":"2025-05-25T20:10:17.471295Z","zone":null}],"total_count":1}' headers: Content-Length: - - "610" + - "515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:20 GMT + - Sun, 25 May 2025 20:13:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2255,11 +3333,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1401f249-c4b0-4811-b1e3-0e1e7a3548d9 + - b5f4f108-7ad1-4067-a597-2c5604c06632 status: 200 OK code: 200 - duration: 82.72325ms - - id: 46 + duration: 64.909041ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2274,8 +3352,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2285,7 +3363,7 @@ interactions: trailer: {} content_length: 610 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "610" @@ -2294,9 +3372,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:20 GMT + - Sun, 25 May 2025 20:13:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2304,11 +3382,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51a6a897-e4cb-48fd-9fe0-69a0336c034d + - 40221bdd-5635-4d88-a8d0-49aa77f6d76f status: 200 OK code: 200 - duration: 22.374375ms - - id: 47 + duration: 23.167125ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 613 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:13:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5d9c46b-36ac-44d2-a02e-44c65af07810 + status: 200 OK + code: 200 + duration: 164.002292ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2323,8 +3450,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e557eb3e-293e-40ca-8cca-c837b8454730 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2332,20 +3459,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 613 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:42.488268Z","dhcp_enabled":true,"id":"e557eb3e-293e-40ca-8cca-c837b8454730","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-03-07T09:47:42.488268Z","id":"592b353e-8a4f-4822-8a1c-aa00688c5173","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-03-07T09:47:42.488268Z","id":"a553a78a-cd9b-4713-b68d-c19b57b0f444","private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:fbc9::/64","updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-03-07T09:47:42.488268Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1021" + - "613" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:21 GMT + - Sun, 25 May 2025 20:13:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2353,11 +3480,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ce8ec0f-4935-439f-87a0-c8009221722c + - 5411f4e2-7031-44f3-b161-b1290fb3288b status: 200 OK code: 200 - duration: 117.096709ms - - id: 48 + duration: 26.433125ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2372,8 +3499,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2381,20 +3508,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 613 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "613" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:21 GMT + - Sun, 25 May 2025 20:13:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2402,11 +3529,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9762e1a5-dbf0-4a41-b265-d10bdbcd0758 + - da43bd47-70e4-4a53-b3cf-3b61921c8a9a status: 200 OK code: 200 - duration: 80.850083ms - - id: 49 + duration: 53.273917ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -2421,8 +3548,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2430,20 +3557,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 613 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "610" + - "613" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:22 GMT + - Sun, 25 May 2025 20:13:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2451,11 +3578,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c7c9206-aaf2-4ad1-8624-ef47cac76737 + - c864b508-4166-4619-b550-c16e29c7af89 status: 200 OK code: 200 - duration: 28.338917ms - - id: 50 + duration: 48.494375ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2470,9 +3597,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -2481,7 +3608,7 @@ interactions: trailer: {} content_length: 613 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "613" @@ -2490,9 +3617,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:22 GMT + - Sun, 25 May 2025 20:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2500,11 +3627,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 846fcffc-cdf6-499f-a641-994cc357fffb + - ffd8940c-c225-428f-971e-a53fa548c710 status: 200 OK code: 200 - duration: 173.741167ms - - id: 51 + duration: 47.562542ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -2519,8 +3646,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2530,7 +3657,7 @@ interactions: trailer: {} content_length: 613 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "613" @@ -2539,9 +3666,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:22 GMT + - Sun, 25 May 2025 20:14:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2549,11 +3676,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c4137c1-1321-4432-b6a0-929bd626dbb5 + - 273ba2cd-d289-429c-ab30-c45b91d5d5fb status: 200 OK code: 200 - duration: 74.1155ms - - id: 52 + duration: 45.357292ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -2568,8 +3695,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2579,7 +3706,7 @@ interactions: trailer: {} content_length: 613 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "613" @@ -2588,9 +3715,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:33 GMT + - Sun, 25 May 2025 20:14:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2598,11 +3725,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3500902f-dc04-443f-b52d-d968826c4747 + - ed28b58f-080b-4293-b231-314b08c851b5 status: 200 OK code: 200 - duration: 79.808541ms - - id: 53 + duration: 46.752458ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -2617,8 +3744,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2628,7 +3755,7 @@ interactions: trailer: {} content_length: 613 uncompressed: false - body: '{"created_at":"2025-03-07T09:47:45.851479Z","endpoints":[{"dns_records":["a9f3e303-df91-4e6e-8d18-929e445b0ec1.e557eb3e-293e-40ca-8cca-c837b8454730.internal"],"id":"5776dba3-8789-4d8b-8ff5-08457e86c952","ips":[],"port":27017,"private_network":{"private_network_id":"e557eb3e-293e-40ca-8cca-c837b8454730"}}],"id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "613" @@ -2637,9 +3764,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:43 GMT + - Sun, 25 May 2025 20:14:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2647,11 +3774,207 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f60b9dd-4fc3-4888-8ca2-ed346b4576be + - 9b651caf-512f-4f31-a38a-928c9fc0f5ab status: 200 OK code: 200 - duration: 92.466459ms - - id: 54 + duration: 56.294458ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 613 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:14:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f45600ed-91fc-447f-8c6a-489ef4d998d8 + status: 200 OK + code: 200 + duration: 74.344667ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 613 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:14:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 57191f5f-013e-47fa-8789-4bce38be21ee + status: 200 OK + code: 200 + duration: 73.746ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 613 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:14:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c9eea8c-4c2e-459c-bbe3-81e9a2e68726 + status: 200 OK + code: 200 + duration: 49.459625ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 613 + uncompressed: false + body: '{"created_at":"2025-05-25T20:04:02.704915Z","endpoints":[{"dns_records":["b5a25952-954e-4ce8-a235-83e82abca8af.e78e48af-1b32-42b4-b845-30b92de81b83.internal"],"id":"ac90e43b-c181-4044-b367-046306bdfc04","ips":[],"port":27017,"private_network":{"private_network_id":"e78e48af-1b32-42b4-b845-30b92de81b83"}}],"id":"b5a25952-954e-4ce8-a235-83e82abca8af","name":"test-mongodb-private-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Sun, 25 May 2025 20:15:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ad342dec-5ead-45c7-a685-16b31db37d57 + status: 200 OK + code: 200 + duration: 40.47875ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -2666,8 +3989,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2677,7 +4000,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"b5a25952-954e-4ce8-a235-83e82abca8af","type":"not_found"}' headers: Content-Length: - "129" @@ -2686,9 +4009,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:53 GMT + - Sun, 25 May 2025 20:15:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2696,11 +4019,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72071be6-26ff-4573-a0d4-7cc7dbfbb9cd + - cd0b8412-2f5c-4e62-9d47-f3a24fecb8fe status: 404 Not Found code: 404 - duration: 31.288ms - - id: 55 + duration: 26.45525ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -2715,8 +4038,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e557eb3e-293e-40ca-8cca-c837b8454730 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e78e48af-1b32-42b4-b845-30b92de81b83 method: DELETE response: proto: HTTP/2.0 @@ -2733,9 +4056,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:54 GMT + - Sun, 25 May 2025 20:15:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,11 +4066,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 015937a4-ecf0-4b56-a7a2-2a29e84dbe47 + - de1e8e58-8c72-4d17-82bb-537ce0a73b8e status: 204 No Content code: 204 - duration: 1.26438125s - - id: 56 + duration: 1.217243666s + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -2762,8 +4085,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/a9f3e303-df91-4e6e-8d18-929e445b0ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b5a25952-954e-4ce8-a235-83e82abca8af method: GET response: proto: HTTP/2.0 @@ -2773,7 +4096,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"a9f3e303-df91-4e6e-8d18-929e445b0ec1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"b5a25952-954e-4ce8-a235-83e82abca8af","type":"not_found"}' headers: Content-Length: - "129" @@ -2782,9 +4105,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Mar 2025 09:54:54 GMT + - Sun, 25 May 2025 20:15:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2792,7 +4115,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd457e9c-1cd5-479f-a7f3-21015a7df10d + - 60f8fe20-cbf8-4ca1-aead-2d556c9e0951 status: 404 Not Found code: 404 - duration: 26.578459ms + duration: 29.939625ms From ba79577492d62dcadc2fc852a2e5d142c5334afb Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Mon, 26 May 2025 09:44:28 +0200 Subject: [PATCH 2/2] fix --- docs/resources/mongodb_instance.md | 4 ++-- internal/services/mongodb/instance.go | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/resources/mongodb_instance.md b/docs/resources/mongodb_instance.md index 01b358e6e0..19dd6ded59 100644 --- a/docs/resources/mongodb_instance.md +++ b/docs/resources/mongodb_instance.md @@ -120,8 +120,8 @@ In addition to all arguments above, the following attributes are exported: - `port` - TCP port of the endpoint. - `dns_records` - List of DNS records for your endpoint. - `private_ip` - The private IPv4 address associated with the instance. - - `id` - The ID of the IPv4 address resource. - - `address` - The private IPv4 address. + - `id` - The ID of the IPv4 address resource. + - `address` - The private IPv4 address. - `public_network` - Private Network endpoints of the Database Instance. - `id` - The ID of the endpoint. - `port` - TCP port of the endpoint. diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index dddefa93cc..50189ffd6d 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -434,7 +434,6 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interfa if !authorized { break } - } }