diff --git a/internal/services/mongodb/data_source_instance_test.go b/internal/services/mongodb/data_source_instance_test.go index a4f293de7..83ad6779f 100644 --- a/internal/services/mongodb/data_source_instance_test.go +++ b/internal/services/mongodb/data_source_instance_test.go @@ -7,7 +7,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" ) -func TestAccDataSourceMongoDBInstance_ByName(t *testing.T) { +func TestAccMongoDBInstanceDataSource_Basic(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -18,59 +18,32 @@ func TestAccDataSourceMongoDBInstance_ByName(t *testing.T) { Steps: []resource.TestStep{ { Config: ` - resource "scaleway_mongodb_instance" "test" { - name = "test-mongodb-instance-by-name" - version = "7.0" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - } - - data "scaleway_mongodb_instance" "test_by_name" { - name = scaleway_mongodb_instance.test.name - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_name", "name", "test-mongodb-instance-by-name"), - resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_name", "version", "7.0"), - resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_name", "node_type", "mgdb-play2-nano"), - resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_name", "node_number", "1"), - ), - }, - }, - }) -} - -func TestAccDataSourceMongoDBInstance_ByID(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: IsInstanceDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource "scaleway_mongodb_instance" "test" { - name = "test-mongodb-instance-id" - version = "7.0" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - } - - data "scaleway_mongodb_instance" "test_by_id" { - instance_id = scaleway_mongodb_instance.test.id - } + resource "scaleway_mongodb_instance" "test" { + name = "test-mongodb-instance-both" + version = "7.0" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } + + data "scaleway_mongodb_instance" "by_name" { + name = scaleway_mongodb_instance.test.name + } + + data "scaleway_mongodb_instance" "by_id" { + instance_id = scaleway_mongodb_instance.test.id + } `, Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_id", "name", "test-mongodb-instance-id"), - resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_id", "version", "7.0"), - resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_id", "node_type", "mgdb-play2-nano"), - resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_id", "node_number", "1"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.by_name", "name", "test-mongodb-instance-both"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.by_name", "version", "7.0"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.by_name", "node_type", "mgdb-play2-nano"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.by_name", "node_number", "1"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.by_id", "name", "test-mongodb-instance-both"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.by_id", "version", "7.0"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.by_id", "node_type", "mgdb-play2-nano"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.by_id", "node_number", "1"), ), }, }, diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 46729bda4..f30043459 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -22,16 +22,17 @@ func TestAccMongoDBInstance_Basic(t *testing.T) { ProviderFactories: tt.ProviderFactories, CheckDestroy: IsInstanceDestroyed(tt), Steps: []resource.TestStep{ + // Step 1: Basic creation { Config: ` - resource scaleway_mongodb_instance main { - name = "test-mongodb-basic-1" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - } + resource scaleway_mongodb_instance main { + name = "test-mongodb-basic-1" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "user" + password = "thiZ_is_v&ry_s3cret" + } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), @@ -39,82 +40,62 @@ func TestAccMongoDBInstance_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_type", "mgdb-play2-nano"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_number", "1"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "user_name", "user"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "password", "thiZ_is_v&ry_s3cret"), resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "tls_certificate"), ), }, - }, - }) -} - -func TestAccMongoDBInstance_VolumeUpdate(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: IsInstanceDestroyed(tt), - Steps: []resource.TestStep{ + // Step 2: Update volume size and version { Config: ` - resource scaleway_mongodb_instance main { - name = "test-mongodb-volume-update1" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = "1" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - volume_size_in_gb = 5 - } + resource scaleway_mongodb_instance main { + name = "test-mongodb-basic-1" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "user" + password = "thiZ_is_v&ry_s3cret" + volume_size_in_gb = 5 + } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "volume_size_in_gb", "5"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0"), ), }, + // Step 3: Update volume size and version { Config: ` - resource scaleway_mongodb_instance main { - name = "test-mongodb-volume-update1" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = "1" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - volume_size_in_gb = 10 - } + resource scaleway_mongodb_instance main { + name = "test-mongodb-basic-1" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "user" + password = "thiZ_is_v&ry_s3cret" + volume_size_in_gb = 10 + } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "volume_size_in_gb", "10"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0"), ), }, - }, - }) -} - -func TestAccMongoDBInstance_UpdateNameTagsUser(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: IsInstanceDestroyed(tt), - Steps: []resource.TestStep{ + // Step 4: Update name, tags, user, password and version { Config: ` - resource scaleway_mongodb_instance main { - name = "test-mongodb-update-initial" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "user" - password = "initial_password" - tags = ["initial_tag1", "initial_tag2"] - } + resource scaleway_mongodb_instance main { + name = "test-mongodb-update-initial" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "user" + password = "initial_password" + tags = ["initial_tag1", "initial_tag2"] + volume_size_in_gb = 10 + } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), @@ -123,19 +104,22 @@ func TestAccMongoDBInstance_UpdateNameTagsUser(t *testing.T) { resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.#", "2"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.0", "initial_tag1"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.1", "initial_tag2"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0"), ), }, + // Step 5: Update name, tags, user, password and version (final) { Config: ` - resource scaleway_mongodb_instance main { - name = "test-mongodb-update-final" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "user" - password = "updated_password" - tags = ["updated_tag1", "updated_tag2", "updated_tag3"] - } + resource scaleway_mongodb_instance main { + name = "test-mongodb-update-final" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "user" + password = "updated_password" + tags = ["updated_tag1", "updated_tag2", "updated_tag3"] + volume_size_in_gb = 10 + } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), @@ -144,6 +128,7 @@ func TestAccMongoDBInstance_UpdateNameTagsUser(t *testing.T) { resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.0", "updated_tag1"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.1", "updated_tag2"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.2", "updated_tag3"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0"), ), }, }, @@ -200,61 +185,8 @@ func TestAccMongoDBInstance_FromSnapshot(t *testing.T) { }) } -func TestAccMongoDBInstance_WithPrivateNetwork(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: IsInstanceDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network" - region = "fr-par" - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("scaleway_vpc_private_network.pn01", "name", "my_private_network"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network" - region = "fr-par" - } - - resource scaleway_mongodb_instance main { - name = "test-mongodb-private-network" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - private_network { - pn_id = "${scaleway_vpc_private_network.pn01.id}" - } - } - `, - Check: resource.ComposeTestCheckFunc( - isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), - 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_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"), - ), - }, - }, - }) -} - -func TestAccMongoDBInstance_UpdatePrivateNetwork(t *testing.T) { +// Test combined for private networks +func TestAccMongoDBInstance_Networks(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -265,46 +197,48 @@ func TestAccMongoDBInstance_UpdatePrivateNetwork(t *testing.T) { ProviderFactories: tt.ProviderFactories, CheckDestroy: IsInstanceDestroyed(tt), Steps: []resource.TestStep{ + // Step 1: Creation of private networks { Config: ` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network" - region = "fr-par" - } + resource scaleway_vpc_private_network pn01 { + name = "my_private_network" + region = "fr-par" + } - resource scaleway_vpc_private_network pn02 { - name = "update_private_network" - region = "fr-par" - } + resource scaleway_vpc_private_network pn02 { + name = "update_private_network" + region = "fr-par" + } `, Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_vpc_private_network.pn01", "name", "my_private_network"), resource.TestCheckResourceAttr("scaleway_vpc_private_network.pn02", "name", "update_private_network"), ), }, + // Step 2: Instance with private network pn01 { Config: ` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network" - region = "fr-par" - } + resource scaleway_vpc_private_network pn01 { + name = "my_private_network" + region = "fr-par" + } - resource scaleway_vpc_private_network pn02 { - name = "update_private_network" - region = "fr-par" - } + resource scaleway_vpc_private_network pn02 { + name = "update_private_network" + region = "fr-par" + } - resource scaleway_mongodb_instance main { - name = "test-mongodb-private-network" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - private_network { - pn_id = "${scaleway_vpc_private_network.pn01.id}" - } - } + resource scaleway_mongodb_instance main { + name = "test-mongodb-private-network" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + private_network { + pn_id = scaleway_vpc_private_network.pn01.id + } + } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), @@ -316,29 +250,30 @@ func TestAccMongoDBInstance_UpdatePrivateNetwork(t *testing.T) { resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_ip.0.address"), ), }, + // Step 3: Update private network to pn02 and version { Config: ` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network" - region = "fr-par" - } + resource scaleway_vpc_private_network pn01 { + name = "my_private_network" + region = "fr-par" + } - resource scaleway_vpc_private_network pn02 { - name = "update_private_network" - region = "fr-par" - } + resource scaleway_vpc_private_network pn02 { + name = "update_private_network" + region = "fr-par" + } - resource scaleway_mongodb_instance main { - name = "test-mongodb-private-network" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - private_network { - pn_id = "${scaleway_vpc_private_network.pn02.id}" - } - } + resource scaleway_mongodb_instance main { + name = "test-mongodb-private-network" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + private_network { + pn_id = scaleway_vpc_private_network.pn02.id + } + } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), @@ -348,28 +283,30 @@ func TestAccMongoDBInstance_UpdatePrivateNetwork(t *testing.T) { 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"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0"), ), }, + // Step 4: Remove private network and version { Config: ` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network" - region = "fr-par" - } + resource scaleway_vpc_private_network pn01 { + name = "my_private_network" + region = "fr-par" + } - resource scaleway_vpc_private_network pn02 { - name = "update_private_network" - region = "fr-par" - } + resource scaleway_vpc_private_network pn02 { + name = "update_private_network" + region = "fr-par" + } - resource scaleway_mongodb_instance main { - name = "test-mongodb-private-network" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - } + resource scaleway_mongodb_instance main { + name = "test-mongodb-private-network" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), @@ -380,7 +317,7 @@ func TestAccMongoDBInstance_UpdatePrivateNetwork(t *testing.T) { }) } -func TestAccMongoDBInstance_WithPublicNetwork(t *testing.T) { +func TestAccMongoDBInstance_PrivateAndPublicNetwork(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -391,10 +328,9 @@ func TestAccMongoDBInstance_WithPublicNetwork(t *testing.T) { Steps: []resource.TestStep{ { Config: ` - resource "scaleway_vpc_private_network" "pn01" { - name = "my_private_network" - region = "fr-par" + name = "my_private_network" + region = "fr-par" } resource "scaleway_mongodb_instance" "main" { diff --git a/internal/services/mongodb/snapshot_test.go b/internal/services/mongodb/snapshot_test.go index a66fdf511..c40003d72 100644 --- a/internal/services/mongodb/snapshot_test.go +++ b/internal/services/mongodb/snapshot_test.go @@ -12,7 +12,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb" ) -func TestAccMongoDBSnapshot_Basic(t *testing.T) { +func TestAccMongoDBSnapshot_Lifecycle(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -23,75 +23,42 @@ func TestAccMongoDBSnapshot_Basic(t *testing.T) { Steps: []resource.TestStep{ { Config: ` - resource "scaleway_mongodb_instance" "main" { - name = "test-mongodb-instance" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - } + resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-instance" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } - resource "scaleway_mongodb_snapshot" "main" { - instance_id = scaleway_mongodb_instance.main.id - name = "test-snapshot" - expires_at = "2025-12-31T23:59:59Z" - } + resource "scaleway_mongodb_snapshot" "main" { + instance_id = scaleway_mongodb_instance.main.id + name = "test-snapshot" + expires_at = "2025-12-31T23:59:59Z" + } `, Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "name", "test-snapshot"), - ), - }, - }, - }) -} - -func TestAccMongoDBSnapshot_Update(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isSnapshotDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource "scaleway_mongodb_instance" "main" { - name = "test-mongodb-instance" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - } - - resource "scaleway_mongodb_snapshot" "main" { - instance_id = scaleway_mongodb_instance.main.id - name = "test-snapshot" - expires_at = "2025-12-31T23:59:59Z" - } - `, - Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2025-12-31T23:59:59Z"), ), }, { Config: ` - resource "scaleway_mongodb_instance" "main" { - name = "test-mongodb-instance" - version = "7.0.12" - node_type = "MGDB-PLAY2-NANO" - node_number = 1 - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - } + resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-instance" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } - resource "scaleway_mongodb_snapshot" "main" { - instance_id = scaleway_mongodb_instance.main.id - name = "updated-snapshot" - expires_at = "2025-09-20T23:59:59Z" - } + resource "scaleway_mongodb_snapshot" "main" { + instance_id = scaleway_mongodb_instance.main.id + name = "updated-snapshot" + expires_at = "2025-09-20T23:59:59Z" + } `, Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "name", "updated-snapshot"), diff --git a/internal/services/mongodb/testdata/data-source-mongo-db-instance-basic.cassette.yaml b/internal/services/mongodb/testdata/data-source-mongo-db-instance-basic.cassette.yaml new file mode 100644 index 000000000..d55f0d530 --- /dev/null +++ b/internal/services/mongodb/testdata/data-source-mongo-db-instance-basic.cassette.yaml @@ -0,0 +1,2945 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 318 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance-both","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' + 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/v1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5a124dd-7505-4772-b7a5-f71658719a29 + status: 200 OK + code: 200 + duration: 817.248542ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4276405e-8eb4-4dd6-be92-59ac1f30eafd + status: 200 OK + code: 200 + duration: 111.506375ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56369a3c-9d4e-4e83-a2e8-82801f65cc9b + status: 200 OK + code: 200 + duration: 99.468583ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96c70fd9-41aa-4e41-8799-abb082f90750 + status: 200 OK + code: 200 + duration: 187.856625ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc1f441a-c156-4602-b4e6-64f01efb9ded + status: 200 OK + code: 200 + duration: 105.163333ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 013d18c1-cf66-44ce-a8da-74ca03a74c2a + status: 200 OK + code: 200 + duration: 101.814292ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9624f0da-1fc8-4ab2-b298-8927dc3e2ed7 + status: 200 OK + code: 200 + duration: 95.142084ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6dab6bc-b379-472c-bf7c-ba5bf003cb54 + status: 200 OK + code: 200 + duration: 115.928708ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f4c7fea-07d0-4d39-883d-3525563b9720 + status: 200 OK + code: 200 + duration: 89.460708ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de1184be-c6b6-469b-9b1e-67acfdcb73c7 + status: 200 OK + code: 200 + duration: 101.743834ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b2da85e-d229-46b9-81b6-781f2ea13358 + status: 200 OK + code: 200 + duration: 108.754667ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df1d0c48-ee76-426e-87b7-1953d17fddb4 + status: 200 OK + code: 200 + duration: 77.717ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - baf45882-e322-46e3-ae11-061b4eef0e57 + status: 200 OK + code: 200 + duration: 141.917041ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e91bd582-6b77-4d66-b8e8-27cd369684c9 + status: 200 OK + code: 200 + duration: 93.614791ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ade4532-b503-40f7-b83b-7859196cff55 + status: 200 OK + code: 200 + duration: 116.726583ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49f4d94d-f770-41b5-a52e-ec1e52d8a8e7 + status: 200 OK + code: 200 + duration: 106.72175ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc57a9f2-c7b6-4b3b-af13-8c6cb1135049 + status: 200 OK + code: 200 + duration: 188.5855ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe5855c3-462f-49bd-8a8b-f28fd9dc0343 + status: 200 OK + code: 200 + duration: 123.63525ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61067566-1cf1-4ac2-8499-56b8f8861d37 + status: 200 OK + code: 200 + duration: 90.153ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96ec6fda-1592-4dad-8444-7e91156fa977 + status: 200 OK + code: 200 + duration: 94.941417ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49b3df6b-ce90-4f12-b77c-1537fe43a032 + status: 200 OK + code: 200 + duration: 150.556709ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 230f973d-449d-42c6-9eb8-ed30a990606a + status: 200 OK + code: 200 + duration: 103.328792ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51ea2a6d-395a-4ac5-9a15-0233d47ca50f + status: 200 OK + code: 200 + duration: 96.492667ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 014459fd-1b3d-48e3-bf7a-5e7d010b2010 + status: 200 OK + code: 200 + duration: 97.832833ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c890d8f-638f-463c-ad62-a1c3cc212203 + status: 200 OK + code: 200 + duration: 301.999792ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72d7e5d0-766a-45b3-aab2-3a2114c0b37a + status: 200 OK + code: 200 + duration: 90.996209ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f047c468-3216-4ead-8cdd-90165c798d91 + status: 200 OK + code: 200 + duration: 157.543834ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c7f06d7-8c1a-462e-a804-68f09a444ddb + status: 200 OK + code: 200 + duration: 104.726042ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d514748f-1756-400c-b603-5ac08065165f + status: 200 OK + code: 200 + duration: 109.392875ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be4d2cd5-cec7-4705-a167-c4e76d573c38 + status: 200 OK + code: 200 + duration: 110.995041ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21995294-0760-4bcd-9c47-1ccb6a49fb25 + status: 200 OK + code: 200 + duration: 96.3825ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 979b1342-65ec-4a15-b1d9-0620cae1bc98 + status: 200 OK + code: 200 + duration: 114.551875ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb50bd15-162e-49f6-baf3-a73c98aba9bb + status: 200 OK + code: 200 + duration: 209.428208ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa9c2eb9-3f73-4919-8060-d7a50ba426b7 + status: 200 OK + code: 200 + duration: 95.773792ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f7abac2-f2e3-468c-bb3d-f32874342587 + status: 200 OK + code: 200 + duration: 92.402709ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ffac697-b2c3-48c0-99e2-58513777183f + status: 200 OK + code: 200 + duration: 106.887ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6dc78d42-dd18-4d64-af7d-22390a31c141 + status: 200 OK + code: 200 + duration: 100.603583ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ee45e07-0251-4095-a7fd-5acc801a0710 + status: 200 OK + code: 200 + duration: 112.236792ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU5JM09UbDV1UE44ZVhOYWltWHNxaXd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTnpkbU1EWmtNR1V0T0RBeE1pMDBNV0V4TFRreFpHUXRaamcxClptTXlZamxrTmpnM01CNFhEVEkxTURjeU5ERTBNall6TmxvWERUTTFNRGN5TWpFME1qWXpObG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBM04yWXdObVF3WlMwNE1ERXlMVFF4WVRFdE9URmtaQzFtCk9EVm1ZekppT1dRMk9EY3dLakFGQmdNclpYQURJUUJ6WVZIMUdWdjg4S1ZVQ2VOK2lEMWVpeStDdTRzRDVaOXMKa2JSYUt3eXVhNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlRvMGJ1YzJqOVI0SlV3CjVLYzVPamtFUmx1ck5UQUZCZ01yWlhBRFFRQXZQR1lZL1ZxQmY0a1ltM2dYUHA4RFMwNFNDYUtPdjI5ajlGY3YKOEEzRnV0Y0RpVzJWNWZRbjc0eHdlbk5ibW83cm9hZDhhdXhWZ0VPSTZVZ2I5NXNECi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b94a5d65-066f-426a-9ee7-043c19f18574 + status: 200 OK + code: 200 + duration: 27.4985ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6063c3a0-f10d-48f0-9520-4b7e7f32a574 + status: 200 OK + code: 200 + duration: 39.504667ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20782e04-240a-4c0e-8b7d-42e3bdd6e3a3 + status: 200 OK + code: 200 + duration: 95.34225ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2410a8d1-d5a1-4fbc-8869-ef782706d309 + status: 200 OK + code: 200 + duration: 29.855666ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3148ba45-8914-459f-ae9f-fd064dcd4d3c + status: 200 OK + code: 200 + duration: 31.945167ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84c9e3ea-51b5-4754-b608-85bb29d40c01 + status: 200 OK + code: 200 + duration: 105.880959ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb50ec65-6629-4da9-9c4f-d38d408176e1 + status: 200 OK + code: 200 + duration: 90.032791ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3934961-0c2e-4240-8553-ffd591af3ab5 + status: 200 OK + code: 200 + duration: 96.682292ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU5JM09UbDV1UE44ZVhOYWltWHNxaXd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTnpkbU1EWmtNR1V0T0RBeE1pMDBNV0V4TFRreFpHUXRaamcxClptTXlZamxrTmpnM01CNFhEVEkxTURjeU5ERTBNall6TmxvWERUTTFNRGN5TWpFME1qWXpObG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBM04yWXdObVF3WlMwNE1ERXlMVFF4WVRFdE9URmtaQzFtCk9EVm1ZekppT1dRMk9EY3dLakFGQmdNclpYQURJUUJ6WVZIMUdWdjg4S1ZVQ2VOK2lEMWVpeStDdTRzRDVaOXMKa2JSYUt3eXVhNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlRvMGJ1YzJqOVI0SlV3CjVLYzVPamtFUmx1ck5UQUZCZ01yWlhBRFFRQXZQR1lZL1ZxQmY0a1ltM2dYUHA4RFMwNFNDYUtPdjI5ajlGY3YKOEEzRnV0Y0RpVzJWNWZRbjc0eHdlbk5ibW83cm9hZDhhdXhWZ0VPSTZVZ2I5NXNECi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ae151e2-7842-4997-a693-c8e89b0d099c + status: 200 OK + code: 200 + duration: 27.766833ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e8ab94d-824d-4a47-8cfb-da7d46f1229c + status: 200 OK + code: 200 + duration: 30.038291ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d8b5cee-2bf9-441b-86a8-127788865766 + status: 200 OK + code: 200 + duration: 107.685041ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b4ca5f8-d36a-4ca5-a915-c3b8276e4b0e + status: 200 OK + code: 200 + duration: 34.957333ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9677b844-8e54-4bdf-8d42-d9e7af2345f0 + status: 200 OK + code: 200 + duration: 86.926667ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d9fc008-fe72-4f08-90a3-3fab17276a70 + status: 200 OK + code: 200 + duration: 109.157792ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5af4d00a-c072-482b-ba20-ad091a435769 + status: 200 OK + code: 200 + duration: 32.204125ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3425515d-1515-46ff-ae51-96eb031856c5 + status: 200 OK + code: 200 + duration: 31.163667ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 567 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "567" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 279c8f1f-e68b-4580-8ef2-3519e507cc81 + status: 200 OK + code: 200 + duration: 205.407959ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 684 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "684" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d16966b-0d3c-411f-bdc2-f402135f8c64 + status: 200 OK + code: 200 + duration: 33.693958ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7555a132-8a25-460b-a00c-68b0042d8c72 + status: 404 Not Found + code: 404 + duration: 25.831583ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e7c677b-a638-4337-97d0-1e168a96db77 + status: 404 Not Found + code: 404 + duration: 32.924292ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53720f46-48af-43b2-99c2-40a203d3554b + status: 404 Not Found + code: 404 + duration: 24.79375ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a703aa5-b7c8-49cf-8b47-e76b31b87546 + status: 404 Not Found + code: 404 + duration: 25.75075ms diff --git a/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-name.cassette.yaml b/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-name.cassette.yaml deleted file mode 100644 index 6342fa45a..000000000 --- a/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-name.cassette.yaml +++ /dev/null @@ -1,3631 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 321 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance-by-name","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' - 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/v1/regions/fr-par/instances - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:15:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7ab70800-3f3f-4799-a85b-d9f803e7d661 - status: 200 OK - code: 200 - duration: 658.62975ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:15:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 974ba1a6-5772-4ac6-b66f-5714ff938319 - status: 200 OK - code: 200 - duration: 141.718ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:15:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e73e6fa-1051-4f06-843f-9c85064a64c0 - status: 200 OK - code: 200 - duration: 91.700417ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:15:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 55fa65b3-5009-4c49-b645-d3d5e173b81a - status: 200 OK - code: 200 - duration: 90.254083ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:15:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dd0b2a42-4be5-4f7d-8ce5-1966d4389559 - status: 200 OK - code: 200 - duration: 86.25625ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:15:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 120e8280-1736-4728-a092-6a96e5799033 - status: 200 OK - code: 200 - duration: 228.568875ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:15:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de790aa2-73a3-4547-b882-b9dd6b40e950 - status: 200 OK - code: 200 - duration: 111.271666ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:16:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c0a8aa04-48bd-4c52-bbf9-0c5bf74be10d - status: 200 OK - code: 200 - duration: 301.457833ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:16:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2598d5e1-8607-4f1f-b25a-230e9a1023a6 - status: 200 OK - code: 200 - duration: 88.803208ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7939a3c3-85fc-4098-9af0-60bd08bfcd8f - status: 200 OK - code: 200 - duration: 110.520083ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:16:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b7165655-1bdb-422e-9462-7333dfa27dfe - status: 200 OK - code: 200 - duration: 89.53425ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:16:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 490e7b80-adbc-49d6-9fce-603edea9df85 - status: 200 OK - code: 200 - duration: 116.108834ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:16:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 750dd3e8-1203-4417-ad43-eac61a44216c - status: 200 OK - code: 200 - duration: 92.571459ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:17:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 27567cb6-e763-4ae4-832f-58d4f62b09d7 - status: 200 OK - code: 200 - duration: 239.825042ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:17:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2f6ec25a-eb64-417b-a8f8-666c8bd5f8ee - status: 200 OK - code: 200 - duration: 99.077416ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:17:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 92f9915f-646e-4928-bd12-ff434673bf09 - status: 200 OK - code: 200 - duration: 96.417959ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:17:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6f82f877-b761-4f3a-88b8-5ce22329183e - status: 200 OK - code: 200 - duration: 125.199875ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:17:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 47b52d33-5b7c-413d-ad9a-6a1acf23f793 - status: 200 OK - code: 200 - duration: 290.568291ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:18:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5fe90815-592d-40d3-8eae-95b33c0cb269 - status: 200 OK - code: 200 - duration: 96.939875ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:18:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 129b03de-94e1-4e3f-8782-41400fffe008 - status: 200 OK - code: 200 - duration: 204.668708ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:18:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 73d76bde-c87b-4520-a65e-80897ef313f1 - status: 200 OK - code: 200 - duration: 92.044875ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 44fbc73b-2939-4f3d-abe5-9128b4a7bc2a - status: 200 OK - code: 200 - duration: 176.548042ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:18:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a795d138-65c4-4736-a31f-c5aa9b17a06c - status: 200 OK - code: 200 - duration: 89.516708ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:18:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aa3d9585-7df2-46e8-bac8-c9c117934c34 - status: 200 OK - code: 200 - duration: 84.870167ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:19:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6801fdb7-2120-4eaa-ae54-4ff37f06316d - status: 200 OK - code: 200 - duration: 97.682459ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:19:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 103849c1-b4f8-4bda-ab97-98a916b625f8 - status: 200 OK - code: 200 - duration: 92.125ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:19:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e3f429a9-e902-4f78-9285-54d0cc84174b - status: 200 OK - code: 200 - duration: 99.018666ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:19:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e8dd299-636e-4a74-a964-e83ca66be62a - status: 200 OK - code: 200 - duration: 254.402917ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:19:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8b31d671-4219-4c4d-b57b-1f643568f231 - status: 200 OK - code: 200 - duration: 97.884917ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:19:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3974f1d1-32a5-4b0d-bcf3-760a7244cf21 - status: 200 OK - code: 200 - duration: 144.891375ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:20:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a1e1aa64-983a-4ef5-910f-88ec62eaa8d9 - status: 200 OK - code: 200 - duration: 99.187041ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:20:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e6c3571a-1660-4285-b6ad-5d74a434dbfd - status: 200 OK - code: 200 - duration: 185.309458ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:20:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bfb3444f-2216-48b7-a576-e15c5332e411 - status: 200 OK - code: 200 - duration: 95.943875ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:20:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 817eec88-d0e5-412f-9b2c-a35a2624a429 - status: 200 OK - code: 200 - duration: 96.178542ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:20:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 16ada11b-89b2-4c5f-9fae-44d333a34053 - status: 200 OK - code: 200 - duration: 100.212ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:20:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c267d739-f6d9-43e8-bd83-826feb34042c - status: 200 OK - code: 200 - duration: 86.530083ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:21:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b056ead-2643-45f3-a97f-8801a5b172a1 - status: 200 OK - code: 200 - duration: 140.396542ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:21:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17b29113-aec2-42ef-9d7c-3e42c85dde11 - status: 200 OK - code: 200 - duration: 96.660292ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:21:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 77e909cc-6ad8-4aa8-a6a6-de73d6cb4b8a - status: 200 OK - code: 200 - duration: 90.178125ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:21:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9859013-66e3-4477-b88a-05bd29cfd386 - status: 200 OK - code: 200 - duration: 90.975792ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:21:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 12e663fd-e304-4aa2-9aa1-cedf262f22a4 - status: 200 OK - code: 200 - duration: 107.698375ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:21:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8025050a-330f-46f2-82bf-d15bde12b4de - status: 200 OK - code: 200 - duration: 89.938459ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:22:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3d407a51-ba96-4085-aee4-83863a85acaf - status: 200 OK - code: 200 - duration: 199.758291ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:22:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e04983cb-b011-4c39-b0b0-d4eac0aeb95d - status: 200 OK - code: 200 - duration: 79.152959ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:22:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 95abef98-a64e-4306-9534-b47d25905bc7 - status: 200 OK - code: 200 - duration: 92.274125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:22:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9458a6ad-a414-4a9a-ba0d-eb8b78d33b8e - status: 200 OK - code: 200 - duration: 97.125625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:22:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8fd62c17-1a09-4e9c-a323-f7be48f0f1bc - status: 200 OK - code: 200 - duration: 71.272334ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:22:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 82b99e7e-0ee1-42f9-b294-37f1af6b6f2f - status: 200 OK - code: 200 - duration: 87.230792ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:23:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 68e48b1a-9d6c-4228-94b4-f69beab8ffd5 - status: 200 OK - code: 200 - duration: 104.371541ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 691 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:23:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cfd8265a-dafd-4a7e-b09a-67c7a521ded7 - status: 200 OK - code: 200 - duration: 88.75375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 684 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "684" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f72488c0-3a38-4541-b65c-8f8139efa0f8 - status: 200 OK - code: 200 - duration: 326.885625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 684 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "684" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d8c519a6-ae38-486d-bbcb-25c70d22d503 - status: 200 OK - code: 200 - duration: 97.67825ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-by-name&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 717 - uncompressed: false - body: '{"instances":[{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "717" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5230955c-6db9-452a-a532-3800b9ae4fa6 - status: 200 OK - code: 200 - duration: 93.067667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 684 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "684" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d1d72d3c-9e0f-401f-8327-2956f2c899b7 - status: 200 OK - code: 200 - duration: 34.946875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-by-name&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 717 - uncompressed: false - body: '{"instances":[{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "717" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bdfa2549-f525-4cfa-b57b-94622fbdbf54 - status: 200 OK - code: 200 - duration: 108.155458ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 684 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "684" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b49181c4-5eff-492e-bd63-8a8807f07b64 - status: 200 OK - code: 200 - duration: 30.514458ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 684 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "684" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 149c3a00-6514-47dd-9a86-9a85de79f498 - status: 200 OK - code: 200 - duration: 72.670583ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-by-name&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 717 - uncompressed: false - body: '{"instances":[{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "717" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e430668-5865-40c4-9ca8-34bd601504d8 - status: 200 OK - code: 200 - duration: 35.879125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 684 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "684" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b2eda414-9c5b-4405-aeec-92184bd33caa - status: 200 OK - code: 200 - duration: 87.852583ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-by-name&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 717 - uncompressed: false - body: '{"instances":[{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "717" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b0b8b1c-77a1-4307-a82f-2c6301ce1531 - status: 200 OK - code: 200 - duration: 45.120417ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 684 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "684" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a4b9a75b-bc3b-45bb-9945-8a3e4f5bddc3 - status: 200 OK - code: 200 - duration: 42.766542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 684 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "684" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - caef7144-fa25-449e-be9d-ad13a6b159ca - status: 200 OK - code: 200 - duration: 276.596083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 570 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "570" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b178cfea-4cfd-4260-8209-bd97d45aab1a - status: 200 OK - code: 200 - duration: 169.785042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8e5dcd9-271f-4622-8da7-e4663e570189 - status: 200 OK - code: 200 - duration: 28.6515ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce9190b1-3962-409a-a2af-8fdd67e64ffa - status: 200 OK - code: 200 - duration: 97.545291ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e743bafd-4c8f-4cb0-964c-903ed8430c46 - status: 200 OK - code: 200 - duration: 101.754125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:28:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2dd14774-eabd-4890-87ca-1d4c88cb54ee - status: 200 OK - code: 200 - duration: 89.871167ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:28:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2e364d3b-ba47-4006-8ac7-3be6a3e96059 - status: 200 OK - code: 200 - duration: 89.531042ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:28:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dead96d5-9c89-4e35-a161-cc552e630dcf - status: 200 OK - code: 200 - duration: 97.595ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:28:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 77143fc0-1b67-4e69-b2ab-12f7293ec346 - status: 200 OK - code: 200 - duration: 86.824542ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-07-21T15:15:07.465118Z","endpoints":[{"dns_record":"70e8eb24-7966-4257-ab8d-79ff09a06a47.mgdb.fr-par.scw.cloud","id":"654dc897-c26a-4fbd-a799-8c94198ed1c9","port":27017,"public_network":{}}],"id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","name":"test-mongodb-instance-by-name","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:15:07.911137Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:28:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a29689f0-8c54-428b-8dfa-7d190198597e - status: 200 OK - code: 200 - duration: 251.503ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:28:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 428e134c-71f5-492a-98a7-05c039e6b813 - status: 404 Not Found - code: 404 - duration: 20.188959ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:28:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6a4ea979-0b83-4258-9ae4-faad58fb02a6 - status: 404 Not Found - code: 404 - duration: 24.018917ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/70e8eb24-7966-4257-ab8d-79ff09a06a47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"70e8eb24-7966-4257-ab8d-79ff09a06a47","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:28:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 617bfb3f-0c1d-4b48-a0ad-78e928d64d19 - status: 404 Not Found - code: 404 - duration: 23.169125ms diff --git a/internal/services/mongodb/testdata/data-source-mongo-db-instance.cassette.yaml b/internal/services/mongodb/testdata/data-source-mongo-db-instance.cassette.yaml new file mode 100644 index 000000000..d55f0d530 --- /dev/null +++ b/internal/services/mongodb/testdata/data-source-mongo-db-instance.cassette.yaml @@ -0,0 +1,2945 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 318 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance-both","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' + 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/v1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5a124dd-7505-4772-b7a5-f71658719a29 + status: 200 OK + code: 200 + duration: 817.248542ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4276405e-8eb4-4dd6-be92-59ac1f30eafd + status: 200 OK + code: 200 + duration: 111.506375ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56369a3c-9d4e-4e83-a2e8-82801f65cc9b + status: 200 OK + code: 200 + duration: 99.468583ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96c70fd9-41aa-4e41-8799-abb082f90750 + status: 200 OK + code: 200 + duration: 187.856625ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc1f441a-c156-4602-b4e6-64f01efb9ded + status: 200 OK + code: 200 + duration: 105.163333ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 013d18c1-cf66-44ce-a8da-74ca03a74c2a + status: 200 OK + code: 200 + duration: 101.814292ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9624f0da-1fc8-4ab2-b298-8927dc3e2ed7 + status: 200 OK + code: 200 + duration: 95.142084ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6dab6bc-b379-472c-bf7c-ba5bf003cb54 + status: 200 OK + code: 200 + duration: 115.928708ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f4c7fea-07d0-4d39-883d-3525563b9720 + status: 200 OK + code: 200 + duration: 89.460708ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de1184be-c6b6-469b-9b1e-67acfdcb73c7 + status: 200 OK + code: 200 + duration: 101.743834ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b2da85e-d229-46b9-81b6-781f2ea13358 + status: 200 OK + code: 200 + duration: 108.754667ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df1d0c48-ee76-426e-87b7-1953d17fddb4 + status: 200 OK + code: 200 + duration: 77.717ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - baf45882-e322-46e3-ae11-061b4eef0e57 + status: 200 OK + code: 200 + duration: 141.917041ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e91bd582-6b77-4d66-b8e8-27cd369684c9 + status: 200 OK + code: 200 + duration: 93.614791ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ade4532-b503-40f7-b83b-7859196cff55 + status: 200 OK + code: 200 + duration: 116.726583ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49f4d94d-f770-41b5-a52e-ec1e52d8a8e7 + status: 200 OK + code: 200 + duration: 106.72175ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc57a9f2-c7b6-4b3b-af13-8c6cb1135049 + status: 200 OK + code: 200 + duration: 188.5855ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe5855c3-462f-49bd-8a8b-f28fd9dc0343 + status: 200 OK + code: 200 + duration: 123.63525ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61067566-1cf1-4ac2-8499-56b8f8861d37 + status: 200 OK + code: 200 + duration: 90.153ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96ec6fda-1592-4dad-8444-7e91156fa977 + status: 200 OK + code: 200 + duration: 94.941417ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49b3df6b-ce90-4f12-b77c-1537fe43a032 + status: 200 OK + code: 200 + duration: 150.556709ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 230f973d-449d-42c6-9eb8-ed30a990606a + status: 200 OK + code: 200 + duration: 103.328792ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51ea2a6d-395a-4ac5-9a15-0233d47ca50f + status: 200 OK + code: 200 + duration: 96.492667ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 014459fd-1b3d-48e3-bf7a-5e7d010b2010 + status: 200 OK + code: 200 + duration: 97.832833ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c890d8f-638f-463c-ad62-a1c3cc212203 + status: 200 OK + code: 200 + duration: 301.999792ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72d7e5d0-766a-45b3-aab2-3a2114c0b37a + status: 200 OK + code: 200 + duration: 90.996209ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f047c468-3216-4ead-8cdd-90165c798d91 + status: 200 OK + code: 200 + duration: 157.543834ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c7f06d7-8c1a-462e-a804-68f09a444ddb + status: 200 OK + code: 200 + duration: 104.726042ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d514748f-1756-400c-b603-5ac08065165f + status: 200 OK + code: 200 + duration: 109.392875ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be4d2cd5-cec7-4705-a167-c4e76d573c38 + status: 200 OK + code: 200 + duration: 110.995041ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21995294-0760-4bcd-9c47-1ccb6a49fb25 + status: 200 OK + code: 200 + duration: 96.3825ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 979b1342-65ec-4a15-b1d9-0620cae1bc98 + status: 200 OK + code: 200 + duration: 114.551875ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb50bd15-162e-49f6-baf3-a73c98aba9bb + status: 200 OK + code: 200 + duration: 209.428208ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa9c2eb9-3f73-4919-8060-d7a50ba426b7 + status: 200 OK + code: 200 + duration: 95.773792ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f7abac2-f2e3-468c-bb3d-f32874342587 + status: 200 OK + code: 200 + duration: 92.402709ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ffac697-b2c3-48c0-99e2-58513777183f + status: 200 OK + code: 200 + duration: 106.887ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6dc78d42-dd18-4d64-af7d-22390a31c141 + status: 200 OK + code: 200 + duration: 100.603583ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ee45e07-0251-4095-a7fd-5acc801a0710 + status: 200 OK + code: 200 + duration: 112.236792ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU5JM09UbDV1UE44ZVhOYWltWHNxaXd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTnpkbU1EWmtNR1V0T0RBeE1pMDBNV0V4TFRreFpHUXRaamcxClptTXlZamxrTmpnM01CNFhEVEkxTURjeU5ERTBNall6TmxvWERUTTFNRGN5TWpFME1qWXpObG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBM04yWXdObVF3WlMwNE1ERXlMVFF4WVRFdE9URmtaQzFtCk9EVm1ZekppT1dRMk9EY3dLakFGQmdNclpYQURJUUJ6WVZIMUdWdjg4S1ZVQ2VOK2lEMWVpeStDdTRzRDVaOXMKa2JSYUt3eXVhNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlRvMGJ1YzJqOVI0SlV3CjVLYzVPamtFUmx1ck5UQUZCZ01yWlhBRFFRQXZQR1lZL1ZxQmY0a1ltM2dYUHA4RFMwNFNDYUtPdjI5ajlGY3YKOEEzRnV0Y0RpVzJWNWZRbjc0eHdlbk5ibW83cm9hZDhhdXhWZ0VPSTZVZ2I5NXNECi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b94a5d65-066f-426a-9ee7-043c19f18574 + status: 200 OK + code: 200 + duration: 27.4985ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6063c3a0-f10d-48f0-9520-4b7e7f32a574 + status: 200 OK + code: 200 + duration: 39.504667ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20782e04-240a-4c0e-8b7d-42e3bdd6e3a3 + status: 200 OK + code: 200 + duration: 95.34225ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2410a8d1-d5a1-4fbc-8869-ef782706d309 + status: 200 OK + code: 200 + duration: 29.855666ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3148ba45-8914-459f-ae9f-fd064dcd4d3c + status: 200 OK + code: 200 + duration: 31.945167ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84c9e3ea-51b5-4754-b608-85bb29d40c01 + status: 200 OK + code: 200 + duration: 105.880959ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb50ec65-6629-4da9-9c4f-d38d408176e1 + status: 200 OK + code: 200 + duration: 90.032791ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3934961-0c2e-4240-8553-ffd591af3ab5 + status: 200 OK + code: 200 + duration: 96.682292ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU5JM09UbDV1UE44ZVhOYWltWHNxaXd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTnpkbU1EWmtNR1V0T0RBeE1pMDBNV0V4TFRreFpHUXRaamcxClptTXlZamxrTmpnM01CNFhEVEkxTURjeU5ERTBNall6TmxvWERUTTFNRGN5TWpFME1qWXpObG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBM04yWXdObVF3WlMwNE1ERXlMVFF4WVRFdE9URmtaQzFtCk9EVm1ZekppT1dRMk9EY3dLakFGQmdNclpYQURJUUJ6WVZIMUdWdjg4S1ZVQ2VOK2lEMWVpeStDdTRzRDVaOXMKa2JSYUt3eXVhNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlRvMGJ1YzJqOVI0SlV3CjVLYzVPamtFUmx1ck5UQUZCZ01yWlhBRFFRQXZQR1lZL1ZxQmY0a1ltM2dYUHA4RFMwNFNDYUtPdjI5ajlGY3YKOEEzRnV0Y0RpVzJWNWZRbjc0eHdlbk5ibW83cm9hZDhhdXhWZ0VPSTZVZ2I5NXNECi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ae151e2-7842-4997-a693-c8e89b0d099c + status: 200 OK + code: 200 + duration: 27.766833ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e8ab94d-824d-4a47-8cfb-da7d46f1229c + status: 200 OK + code: 200 + duration: 30.038291ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d8b5cee-2bf9-441b-86a8-127788865766 + status: 200 OK + code: 200 + duration: 107.685041ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b4ca5f8-d36a-4ca5-a915-c3b8276e4b0e + status: 200 OK + code: 200 + duration: 34.957333ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9677b844-8e54-4bdf-8d42-d9e7af2345f0 + status: 200 OK + code: 200 + duration: 86.926667ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d9fc008-fe72-4f08-90a3-3fab17276a70 + status: 200 OK + code: 200 + duration: 109.157792ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5af4d00a-c072-482b-ba20-ad091a435769 + status: 200 OK + code: 200 + duration: 32.204125ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3425515d-1515-46ff-ae51-96eb031856c5 + status: 200 OK + code: 200 + duration: 31.163667ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 567 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "567" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 279c8f1f-e68b-4580-8ef2-3519e507cc81 + status: 200 OK + code: 200 + duration: 205.407959ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 684 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "684" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d16966b-0d3c-411f-bdc2-f402135f8c64 + status: 200 OK + code: 200 + duration: 33.693958ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7555a132-8a25-460b-a00c-68b0042d8c72 + status: 404 Not Found + code: 404 + duration: 25.831583ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e7c677b-a638-4337-97d0-1e168a96db77 + status: 404 Not Found + code: 404 + duration: 32.924292ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53720f46-48af-43b2-99c2-40a203d3554b + status: 404 Not Found + code: 404 + duration: 24.79375ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a703aa5-b7c8-49cf-8b47-e76b31b87546 + status: 404 Not Found + code: 404 + duration: 25.75075ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml index 66032d16d..ad545962e 100644 --- a/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 312 + content_length: 301 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-basic-1","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-basic-1","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' form: {} headers: Content-Type: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:39:11 GMT + - Thu, 24 Jul 2025 13:48:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6312c71c-88b3-411c-ba63-b01ac46f4703 + - 241aaecc-9d1c-466f-b1b3-db622e3d4cb7 status: 200 OK code: 200 - duration: 535.29575ms + duration: 723.606125ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:39:11 GMT + - Thu, 24 Jul 2025 13:48:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f08dcc0-59b0-4e40-98d1-a26be2152fa2 + - f3105f9d-1f9d-462a-a66f-b0e219a58642 status: 200 OK code: 200 - duration: 129.578375ms + duration: 110.664792ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:39:21 GMT + - Thu, 24 Jul 2025 13:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffe1d5f8-8c62-429c-b17a-fceeb676cff4 + - 1b06a8dc-d30c-4193-aeb1-410c18ecaa42 status: 200 OK code: 200 - duration: 189.254334ms + duration: 157.584209ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:39:31 GMT + - Thu, 24 Jul 2025 13:49:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - defdec91-56f2-4b4c-8578-d29eca8ef6da + - 7a435d02-f382-4e79-b94d-f37c86963999 status: 200 OK code: 200 - duration: 85.243667ms + duration: 121.603791ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:39:41 GMT + - Thu, 24 Jul 2025 13:49:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a7040db-e354-45f7-8954-98ed82706479 + - d35c423e-bdb7-4ed2-bba9-c7f3a562be56 status: 200 OK code: 200 - duration: 108.674084ms + duration: 274.737041ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -274,7 +274,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -283,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:39:51 GMT + - Thu, 24 Jul 2025 13:49:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69155ed8-fb48-46d0-871a-7ac74dd9c0e0 + - 3ce44062-adaa-4a0a-96ee-c4365f60e387 status: 200 OK code: 200 - duration: 89.388583ms + duration: 110.014291ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:40:02 GMT + - Thu, 24 Jul 2025 13:49:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d022c4c-a9e8-4f4b-ace4-8181b24ad255 + - fd89f9d9-56c2-42e8-93c2-181024a4a6e1 status: 200 OK code: 200 - duration: 113.951958ms + duration: 112.849917ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:40:12 GMT + - Thu, 24 Jul 2025 13:49:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1f12f9-e4ed-44bb-842a-cfbe9a689b96 + - d1eebede-d66a-4f64-a160-0036a49975ca status: 200 OK code: 200 - duration: 109.662166ms + duration: 85.621916ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:40:22 GMT + - Thu, 24 Jul 2025 13:49:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b30cc0e2-55df-4c19-af4b-9402630d0d19 + - fdff6ae7-1eec-4b2f-9d68-7f200a353da2 status: 200 OK code: 200 - duration: 90.377833ms + duration: 80.465208ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:40:32 GMT + - Thu, 24 Jul 2025 13:50:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d451f9cb-27e4-46f8-ae85-86adac0fe35f + - c552abfe-b05f-4175-aea3-5376ceef2892 status: 200 OK code: 200 - duration: 90.099042ms + duration: 221.3905ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:40:42 GMT + - Thu, 24 Jul 2025 13:50:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4106cc86-7050-4ad4-afb5-cc881a8cb17f + - d5995fde-52bf-47b5-b342-58acc201cccd status: 200 OK code: 200 - duration: 157.580083ms + duration: 117.273958ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -568,7 +568,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -577,9 +577,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:40:52 GMT + - Thu, 24 Jul 2025 13:50:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16bd75cb-42ea-4052-a518-ca891db9362e + - 1dbd2420-cb28-4d93-aa41-eccf7cfa7a95 status: 200 OK code: 200 - duration: 417.485917ms + duration: 136.407542ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -617,7 +617,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -626,9 +626,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:41:03 GMT + - Thu, 24 Jul 2025 13:50:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c56b1ee9-d232-4820-908f-87ffe5b5a54e + - faa2edaf-a57e-4817-b437-67bb12b1f6a6 status: 200 OK code: 200 - duration: 114.479458ms + duration: 94.859916ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -666,7 +666,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -675,9 +675,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:41:13 GMT + - Thu, 24 Jul 2025 13:50:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12120d8d-c9c3-4194-9f21-8dceabb1da23 + - 1047d0ed-2749-474d-aec3-87c464583e91 status: 200 OK code: 200 - duration: 110.984875ms + duration: 105.643792ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -724,9 +724,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:41:23 GMT + - Thu, 24 Jul 2025 13:50:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46b32352-71d5-4f04-8c29-d4ea478836d6 + - 10821caa-3fd8-4ec3-b30a-2a0d9e751334 status: 200 OK code: 200 - duration: 98.665959ms + duration: 110.819042ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -773,9 +773,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:41:33 GMT + - Thu, 24 Jul 2025 13:51:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb1f2e49-f2d3-4d4e-8030-a3828b6df57f + - 77f0782b-fad9-4d85-95c6-bad4aaf10788 status: 200 OK code: 200 - duration: 216.696ms + duration: 88.970042ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -813,7 +813,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -822,9 +822,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:41:43 GMT + - Thu, 24 Jul 2025 13:51:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d51e19c-21d6-4fbb-8872-9937a7b9a60a + - 7c2d369a-581e-41b6-a06c-9f9cc8ffae34 status: 200 OK code: 200 - duration: 103.074917ms + duration: 241.527708ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -862,7 +862,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -871,9 +871,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:41:53 GMT + - Thu, 24 Jul 2025 13:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a998617c-1fd1-4e4b-a663-d3b89212bdb9 + - c8dc6013-9d58-4909-a0f9-35565e491d74 status: 200 OK code: 200 - duration: 87.459458ms + duration: 131.057959ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -911,7 +911,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -920,9 +920,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:42:03 GMT + - Thu, 24 Jul 2025 13:51:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ddad56e-df0c-4b65-b4c9-e6c723fded16 + - 08bb5384-2369-4e67-9215-5c4aacf87c08 status: 200 OK code: 200 - duration: 225.587125ms + duration: 119.230542ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -960,7 +960,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -969,9 +969,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:42:13 GMT + - Thu, 24 Jul 2025 13:51:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f633c75-a3dc-40ed-99c7-d45d6414e055 + - 66213af6-8732-401a-81ea-2595f0794de8 status: 200 OK code: 200 - duration: 95.902917ms + duration: 85.768417ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1009,7 +1009,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1018,9 +1018,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:42:24 GMT + - Thu, 24 Jul 2025 13:51:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aeda3846-7e76-47df-9de2-e53a2d1696d0 + - 5bdacddc-a642-423d-a536-fc1d9ebc713c status: 200 OK code: 200 - duration: 84.536166ms + duration: 128.391416ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1067,9 +1067,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:42:34 GMT + - Thu, 24 Jul 2025 13:52:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b69cae7-c356-43bd-bdbd-7e376b0f666d + - 2fc17cf1-bf6a-4beb-b70b-3e306c450cfc status: 200 OK code: 200 - duration: 92.222958ms + duration: 243.556833ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1107,7 +1107,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1116,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:42:44 GMT + - Thu, 24 Jul 2025 13:52:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3bc33e1-0e79-487d-8a7d-76579ec1adaf + - 03b1c39b-14d6-42cb-abf3-4643d6bc675b status: 200 OK code: 200 - duration: 104.293875ms + duration: 106.407791ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1156,7 +1156,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1165,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:42:54 GMT + - Thu, 24 Jul 2025 13:52:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 623d9b24-cfc8-4a33-815f-c2bee2ce16ad + - 93400694-2746-4d13-bb16-a739839ed731 status: 200 OK code: 200 - duration: 222.148709ms + duration: 405.976625ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1205,7 +1205,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1214,9 +1214,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:43:04 GMT + - Thu, 24 Jul 2025 13:52:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57556a15-2b25-433b-a1ca-84c8e0344989 + - 2c60f3ba-29a7-4ea8-9e00-f6cc4c5eff4d status: 200 OK code: 200 - duration: 96.502708ms + duration: 99.507625ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1254,7 +1254,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1263,9 +1263,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:43:14 GMT + - Thu, 24 Jul 2025 13:52:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 856433ab-19dd-4366-a0a4-0cd0001a9be3 + - eb24974c-7d07-41bc-8d9a-72b0021b8d8f status: 200 OK code: 200 - duration: 108.97525ms + duration: 118.6025ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1303,7 +1303,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1312,9 +1312,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:43:24 GMT + - Thu, 24 Jul 2025 13:52:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a1e2021-f458-4e58-ada1-83eec7ddd038 + - 8c74ae17-3a2d-466f-a9d3-734fb828bbf4 status: 200 OK code: 200 - duration: 97.410542ms + duration: 110.289333ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1352,7 +1352,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1361,9 +1361,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:43:34 GMT + - Thu, 24 Jul 2025 13:53:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 049aaa64-1982-4f8e-8453-443859001a45 + - 3db201a0-af7f-4874-a9f6-a7d637418bd8 status: 200 OK code: 200 - duration: 154.047375ms + duration: 108.286083ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1401,7 +1401,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1410,9 +1410,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:43:45 GMT + - Thu, 24 Jul 2025 13:53:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3950b59-65ff-4639-9bc4-b671f59c18ad + - 87e3c7cf-e303-451c-92bc-c702cf81ec69 status: 200 OK code: 200 - duration: 92.147209ms + duration: 120.773666ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1450,7 +1450,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1459,9 +1459,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:43:55 GMT + - Thu, 24 Jul 2025 13:53:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1522143-4f0d-49e2-961b-001cc5f49439 + - 0c0a1913-b173-4f93-b0e4-03630048b018 status: 200 OK code: 200 - duration: 86.157ms + duration: 218.348542ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1499,7 +1499,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1508,9 +1508,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:44:05 GMT + - Thu, 24 Jul 2025 13:53:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09581b58-ea0e-445a-861b-7b503283c74b + - 69c83070-252e-4c7c-8e94-7a34228419b5 status: 200 OK code: 200 - duration: 286.439833ms + duration: 119.337ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1557,9 +1557,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:44:15 GMT + - Thu, 24 Jul 2025 13:53:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2894952-0210-424d-90c4-a565e447a83a + - d27289bd-3d96-4a7e-a8a9-76acd554f978 status: 200 OK code: 200 - duration: 87.460959ms + duration: 100.398917ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1597,7 +1597,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1606,9 +1606,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:44:25 GMT + - Thu, 24 Jul 2025 13:53:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 339ee168-c6da-4550-96fa-f723fa5a6740 + - daa69e69-d167-47a2-9cf6-3802552fb645 status: 200 OK code: 200 - duration: 92.934083ms + duration: 109.19275ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1646,7 +1646,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1655,9 +1655,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:44:35 GMT + - Thu, 24 Jul 2025 13:54:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a7fd2e7-8bb5-4cc0-9d44-81db6068278b + - cf0d5918-3ee1-4de2-a042-04cb2b1cd719 status: 200 OK code: 200 - duration: 84.93275ms + duration: 114.273625ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1693,20 +1693,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:44:45 GMT + - Thu, 24 Jul 2025 13:54:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a3ebd3f-00a2-4c5b-a231-3da624d0c51c + - 1279177c-b7c4-4ee9-ba3d-0102323477b7 status: 200 OK code: 200 - duration: 85.596334ms + duration: 210.2295ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1742,20 +1742,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:44:55 GMT + - Thu, 24 Jul 2025 13:54:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d723a29-4581-4aa0-ae7b-837a0be442fd + - 7eda1112-c19a-4026-9b05-06114597d046 status: 200 OK code: 200 - duration: 144.503709ms + duration: 113.709542ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -1791,20 +1791,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:45:06 GMT + - Thu, 24 Jul 2025 13:54:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 801f59db-a73f-46d9-872e-a00ddb5b9f52 + - a73932e5-940d-4ca2-83a2-7ec9a5f452ff status: 200 OK code: 200 - duration: 100.323375ms + duration: 163.437292ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1840,20 +1840,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:45:16 GMT + - Thu, 24 Jul 2025 13:54:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1a0fe93-d079-4a41-910a-b6e26442202b + - 3d59dbfa-d1c2-4524-a3e6-a4291323e83e status: 200 OK code: 200 - duration: 99.34025ms + duration: 299.272417ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1889,20 +1889,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:45:26 GMT + - Thu, 24 Jul 2025 13:54:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49ae470b-748e-4c39-892a-c66832d950ef + - 21af5ab8-cc0f-4b19-b936-4947c76308b2 status: 200 OK code: 200 - duration: 90.759167ms + duration: 246.700125ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -1938,20 +1938,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:45:36 GMT + - Thu, 24 Jul 2025 13:54:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1959,10 +1959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b28f1cd-1724-4224-ac4f-26c1ae80f907 + - a39b4389-a71f-4221-a37b-443a2bc5d1f0 status: 200 OK code: 200 - duration: 91.893375ms + duration: 176.750333ms - id: 40 request: proto: HTTP/1.1 @@ -1979,7 +1979,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -1987,20 +1987,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:45:46 GMT + - Thu, 24 Jul 2025 13:54:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2008,10 +2008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fd6e843-1d43-4f08-a1dd-9a1d6cefb851 + - 6c4d242a-f036-4d61-85ea-b871f4f35409 status: 200 OK code: 200 - duration: 98.203125ms + duration: 148.184ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2028,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -2036,20 +2036,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:45:56 GMT + - Thu, 24 Jul 2025 13:54:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,10 +2057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86defcdf-a2d2-40a6-b99a-eeb59c5649e7 + - 6037ed0b-7938-4bba-89c4-7441e325a4e7 status: 200 OK code: 200 - duration: 84.398417ms + duration: 69.39925ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2077,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2085,20 +2085,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:46:06 GMT + - Thu, 24 Jul 2025 13:54:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2106,10 +2106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27d57c9e-7e58-464a-bc67-16b1e4dc2c53 + - f57eac18-cbbb-48ba-a46b-168a5f94dc07 status: 200 OK code: 200 - duration: 157.964084ms + duration: 108.952667ms - id: 43 request: proto: HTTP/1.1 @@ -2126,7 +2126,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2134,20 +2134,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:46:16 GMT + - Thu, 24 Jul 2025 13:54:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2155,10 +2155,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b260433c-9af8-4f84-ad63-b15a6da9f1c3 + - 0b958db7-c7ef-4555-9822-5ddd200636c6 status: 200 OK code: 200 - duration: 242.8515ms + duration: 106.078334ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2175,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -2183,20 +2183,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:46:27 GMT + - Thu, 24 Jul 2025 13:54:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2204,10 +2204,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b05213c-a00e-4994-a34a-e1ee7bc7e6be + - 54308216-cb1e-44ca-9b96-0d7ab6ff5190 status: 200 OK code: 200 - duration: 88.133875ms + duration: 31.165458ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2224,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2232,20 +2232,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:46:37 GMT + - Thu, 24 Jul 2025 13:54:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2253,10 +2253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 567ba47c-2336-43b5-9ff8-89da9488f881 + - 9b89e500-a92f-4352-97a2-1293047d9a73 status: 200 OK code: 200 - duration: 115.0035ms + duration: 128.252834ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2273,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -2281,20 +2281,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:46:47 GMT + - Thu, 24 Jul 2025 13:54:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2302,48 +2302,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6c36d5b-5d65-4a71-bc44-dacba2c64be0 + - 7298fa4e-c36f-4bc1-92ef-d71c8d0326d4 status: 200 OK code: 200 - duration: 82.697334ms + duration: 27.98475ms - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 33 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_size_bytes":10000000000}' 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/upgrade + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"initializing","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:46:57 GMT + - Thu, 24 Jul 2025 13:54:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2351,10 +2353,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d58cf578-8d58-45da-9fa2-13fcf6132578 + - d85d4295-b53a-41af-b988-4faf4cd68e47 status: 200 OK code: 200 - duration: 456.8525ms + duration: 172.4575ms - id: 48 request: proto: HTTP/1.1 @@ -2371,7 +2373,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2379,20 +2381,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"initializing","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:47:07 GMT + - Thu, 24 Jul 2025 13:54:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2400,10 +2402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fa657a3-af99-4096-afa5-acd4b4002dc8 + - 9eb52ca3-bd10-4aff-8153-92c45e56f663 status: 200 OK code: 200 - duration: 90.296166ms + duration: 90.902958ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2422,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2428,20 +2430,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"initializing","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:47:17 GMT + - Thu, 24 Jul 2025 13:54:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2449,10 +2451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9f9dc2f-e925-462f-a3b6-6fb6cfccfa0c + - bbf96607-3cbc-42d2-98a5-fad7e6743f53 status: 200 OK code: 200 - duration: 99.739042ms + duration: 165.070292ms - id: 50 request: proto: HTTP/1.1 @@ -2469,7 +2471,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2477,20 +2479,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:47:27 GMT + - Thu, 24 Jul 2025 13:54:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2498,10 +2500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fac6c10-5edd-429c-bcc8-015051102dcd + - e8c7847d-923c-42b6-9621-aa53ca39242e status: 200 OK code: 200 - duration: 92.486084ms + duration: 118.622041ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2520,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2526,20 +2528,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:47:38 GMT + - Thu, 24 Jul 2025 13:54:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2547,10 +2549,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a7d1dac-8ad4-4beb-99d4-ab8f74f61bbc + - d6148cda-1870-43ec-90d0-5456cf7c2d5d status: 200 OK code: 200 - duration: 97.175375ms + duration: 87.825417ms - id: 52 request: proto: HTTP/1.1 @@ -2567,7 +2569,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2575,20 +2577,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:47:48 GMT + - Thu, 24 Jul 2025 13:54:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2596,10 +2598,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1802d0fe-96fa-4652-bb23-8fb5929a6472 + - fbb139a1-7b2b-45f0-a724-984c5e9d0659 status: 200 OK code: 200 - duration: 122.26075ms + duration: 27.803709ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2618,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -2624,20 +2626,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:47:58 GMT + - Thu, 24 Jul 2025 13:54:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2645,10 +2647,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19bf10e0-d05a-4c87-aaa1-c534adaee45b + - d80cde90-464b-41e6-839c-840025749407 status: 200 OK code: 200 - duration: 184.004583ms + duration: 29.897875ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2667,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2673,20 +2675,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:48:08 GMT + - Thu, 24 Jul 2025 13:54:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2694,10 +2696,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 401fd3a7-b17e-444f-b594-d30128824611 + - 365f1158-c487-4a17-96f2-7294c4675f11 status: 200 OK code: 200 - duration: 100.450083ms + duration: 34.604625ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2716,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2722,20 +2724,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:48:18 GMT + - Thu, 24 Jul 2025 13:54:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,10 +2745,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 277ace62-8f14-4064-a7f7-dbb88e8e4a1c + - 5a3b4ee5-35c2-403e-b64e-9d8603ff0eb6 status: 200 OK code: 200 - duration: 96.806708ms + duration: 27.220833ms - id: 56 request: proto: HTTP/1.1 @@ -2763,7 +2765,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -2771,20 +2773,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:48:28 GMT + - Thu, 24 Jul 2025 13:54:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2792,10 +2794,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2b97298-d924-4b8e-89d0-01b9555cab3c + - 7d0252a5-d7d8-46ba-b3a0-17db595148b4 status: 200 OK code: 200 - duration: 270.562375ms + duration: 190.86575ms - id: 57 request: proto: HTTP/1.1 @@ -2812,7 +2814,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -2820,20 +2822,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:48:38 GMT + - Thu, 24 Jul 2025 13:54:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2841,10 +2843,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cae5c5d-0f2b-4785-949d-f9be3fb9adab + - b1f26601-cbba-485a-938e-f7e92959b1cf status: 200 OK code: 200 - duration: 195.197666ms + duration: 43.213125ms - id: 58 request: proto: HTTP/1.1 @@ -2861,7 +2863,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -2869,20 +2871,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:48:49 GMT + - Thu, 24 Jul 2025 13:54:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2890,48 +2892,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98a6c5ad-0e8e-4da5-b029-6011f860ea72 + - 4f7934d6-c7e5-43a5-b6b6-01e456b92cd4 status: 200 OK code: 200 - duration: 110.358458ms + duration: 145.205875ms - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 77 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-mongodb-update-initial","tags":["initial_tag1","initial_tag2"]}' 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 713 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:48:59 GMT + - Thu, 24 Jul 2025 13:54:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2939,48 +2943,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10007ec0-e2b1-4426-8d54-003fe71bca71 + - 8c4aac31-bdc3-4b19-93b3-c951300e819b status: 200 OK code: 200 - duration: 89.030375ms + duration: 152.266333ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 31 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"password":"initial_password"}' 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/users/user + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 149 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"name":"user","roles":[{"any_database":true,"role":"read_write"},{"any_database":true,"role":"db_admin"},{"any_database":true,"role":"sync"}]}' headers: Content-Length: - - "682" + - "149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:49:09 GMT + - Thu, 24 Jul 2025 13:54:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2988,10 +2994,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53f536ed-d96a-4b80-812d-bfa28f518012 + - 4926d9f9-9155-4fce-922a-b0d551405dc3 status: 200 OK code: 200 - duration: 185.015208ms + duration: 593.555583ms - id: 61 request: proto: HTTP/1.1 @@ -3008,7 +3014,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3016,20 +3022,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 713 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:49:19 GMT + - Thu, 24 Jul 2025 13:54:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3037,10 +3043,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fef435c7-e2a0-4282-a7c0-2bda35267709 + - 11bd59f6-d89b-4a37-a43c-1c8eb5c5dc4f status: 200 OK code: 200 - duration: 156.152375ms + duration: 207.107792ms - id: 62 request: proto: HTTP/1.1 @@ -3057,7 +3063,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3065,20 +3071,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 713 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:49:29 GMT + - Thu, 24 Jul 2025 13:54:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3086,10 +3092,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5f2d1dd-e4ec-40ef-b623-ca9f35c02b31 + - be5e55d2-6b57-42c8-8fb1-4dd04eefdb33 status: 200 OK code: 200 - duration: 196.159041ms + duration: 111.57525ms - id: 63 request: proto: HTTP/1.1 @@ -3106,7 +3112,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -3114,20 +3120,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:49:39 GMT + - Thu, 24 Jul 2025 13:54:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3135,10 +3141,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7398686-f5a6-4fae-86f9-e7caf106bfc4 + - 36ea2c6a-2f97-48ea-a13c-752296cc3f63 status: 200 OK code: 200 - duration: 120.075459ms + duration: 63.752708ms - id: 64 request: proto: HTTP/1.1 @@ -3155,7 +3161,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3163,20 +3169,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 713 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:49:50 GMT + - Thu, 24 Jul 2025 13:54:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3184,10 +3190,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fed774cb-01d0-41fc-b097-51ec305e39ea + - 804eb5ce-9c3d-4234-b831-54da37ba437b status: 200 OK code: 200 - duration: 230.330958ms + duration: 24.443334ms - id: 65 request: proto: HTTP/1.1 @@ -3204,7 +3210,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3212,20 +3218,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 713 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:50:00 GMT + - Thu, 24 Jul 2025 13:54:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3233,10 +3239,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbda17df-3cab-4ee1-a995-b43dfa04691d + - 9e11bf16-7673-4094-a520-9cee2a466cb2 status: 200 OK code: 200 - duration: 110.525208ms + duration: 77.405208ms - id: 66 request: proto: HTTP/1.1 @@ -3253,7 +3259,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -3261,20 +3267,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:50:10 GMT + - Thu, 24 Jul 2025 13:54:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3282,10 +3288,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d19cb5f7-87a6-4fec-9aa3-3b6669cc2d1e + - 33a4837a-f6f5-4e79-b502-95a99b3784e9 status: 200 OK code: 200 - duration: 100.551959ms + duration: 22.412708ms - id: 67 request: proto: HTTP/1.1 @@ -3302,7 +3308,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3310,20 +3316,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 713 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:50:20 GMT + - Thu, 24 Jul 2025 13:54:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3331,10 +3337,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f0f3ff9-65b3-4ec3-a92c-1b0a51265100 + - a12a641c-09b3-446b-ba05-1e9fe7d2bab4 status: 200 OK code: 200 - duration: 75.332834ms + duration: 27.32475ms - id: 68 request: proto: HTTP/1.1 @@ -3351,7 +3357,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -3359,20 +3365,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "682" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:50:30 GMT + - Thu, 24 Jul 2025 13:54:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3380,48 +3386,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e3c2f75-0209-42c4-a640-87c906d9d7cb + - 0cf68b5c-3877-46ca-956c-e15f2d64e97b status: 200 OK code: 200 - duration: 98.393583ms + duration: 117.583792ms - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 90 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-mongodb-update-final","tags":["updated_tag1","updated_tag2","updated_tag3"]}' 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 727 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "727" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:50:40 GMT + - Thu, 24 Jul 2025 13:54:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3429,48 +3437,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 146ebfe1-e031-4f7e-80bf-41d8f46c9dd5 + - d93800be-5c9f-4f5c-95bd-e57e57ea674e status: 200 OK code: 200 - duration: 223.149333ms + duration: 136.739417ms - id: 70 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 31 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"password":"updated_password"}' 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/users/user + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 149 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"name":"user","roles":[{"any_database":true,"role":"read_write"},{"any_database":true,"role":"db_admin"},{"any_database":true,"role":"sync"}]}' headers: Content-Length: - - "682" + - "149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:50:50 GMT + - Thu, 24 Jul 2025 13:54:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3478,10 +3488,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3909d755-de06-4262-b584-e92f953fa40a + - ab14f695-f4ca-4bd9-b5ed-81f70b51ace6 status: 200 OK code: 200 - duration: 90.891375ms + duration: 527.31825ms - id: 71 request: proto: HTTP/1.1 @@ -3498,7 +3508,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3506,20 +3516,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 727 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "727" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:00 GMT + - Thu, 24 Jul 2025 13:54:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3527,10 +3537,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 686396b6-cfbc-4044-a165-f10ad321ce05 + - 476087f1-265b-4088-9297-5cb98371ba25 status: 200 OK code: 200 - duration: 90.624375ms + duration: 116.408667ms - id: 72 request: proto: HTTP/1.1 @@ -3547,7 +3557,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3555,20 +3565,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 727 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "727" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:11 GMT + - Thu, 24 Jul 2025 13:54:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3576,10 +3586,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a35a8119-335a-423c-a702-976a287966b4 + - 668b96e4-573d-4c8f-9c16-ac799a1e3819 status: 200 OK code: 200 - duration: 89.230708ms + duration: 31.052375ms - id: 73 request: proto: HTTP/1.1 @@ -3596,7 +3606,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -3604,20 +3614,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 675 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "675" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:21 GMT + - Thu, 24 Jul 2025 13:54:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3625,10 +3635,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62e8d475-bf02-4303-ae79-8bba8b469e02 + - 600d42f2-38de-4d09-b975-83c5c5892931 status: 200 OK code: 200 - duration: 200.060333ms + duration: 85.943375ms - id: 74 request: proto: HTTP/1.1 @@ -3645,7 +3655,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3653,20 +3663,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 675 + content_length: 727 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "675" + - "727" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:21 GMT + - Thu, 24 Jul 2025 13:54:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3674,10 +3684,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1175553b-e0bb-45fd-8daf-d031e7ea19ce + - 66ef06ca-c574-42f9-96f0-57ca553ac8c6 status: 200 OK code: 200 - duration: 112.077458ms + duration: 31.361166ms - id: 75 request: proto: HTTP/1.1 @@ -3694,7 +3704,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745/certificate + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3702,20 +3712,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1085 + content_length: 727 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU14N2tHUnh5RVNXQ0N1RlVrR2FLcHd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnWWpjMFpEZ3laVGd0TURNNU55MDBZV013TFdFMk1URXRabVl4Ck5ESTBOMlpsTnpRMU1CNFhEVEkxTURjeU1qQTRNemt4TVZvWERUTTFNRGN5TURBNE16a3hNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNCaU56UmtPREpsT0Mwd016azNMVFJoWXpBdFlUWXhNUzFtClpqRTBNalEzWm1VM05EVXdLakFGQmdNclpYQURJUUJrYXk4YlVKOTVZNGdQUXg4bEtGcGpnYVNveWtrRjVMaDIKSERsT3Z5YlVtNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlF5QnFVcVhVandLelFwCnlnSGJtQ21nTmZJRWxEQUZCZ01yWlhBRFFRQytvcmlEd3BYTVc1Y2VNRE9FQ2p2cW9ZenQ1N1AxcVM3N1BOTTQKYWdnZnIrcjZXWlJhMUxHWVRWNjlhZXRPV3lQMWNGVWZDaXNWRS9NNmpxV2tZb3NMCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1085" + - "727" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:21 GMT + - Thu, 24 Jul 2025 13:54:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3723,10 +3733,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3163094-eb3a-41de-a0b9-b323586de171 + - 3823710d-fdc8-4931-ad5b-6dda4e9fb4ac status: 200 OK code: 200 - duration: 28.532583ms + duration: 30.647208ms - id: 76 request: proto: HTTP/1.1 @@ -3743,7 +3753,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287/certificate method: GET response: proto: HTTP/2.0 @@ -3751,20 +3761,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 675 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU9CVkphS1ZPY3c5OHdwU0E3dWFkQXN3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RJNE9ERmlNbVl0TmpaaVlpMDBObVE0TFRnMVpUUXRPRFF3Ck1tTXlNalJoTWpnM01CNFhEVEkxTURjeU5ERXpORGcwTVZvWERUTTFNRGN5TWpFek5EZzBNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU1qZzRNV0l5WmkwMk5tSmlMVFEyWkRndE9EVmxOQzA0Ck5EQXlZekl5TkdFeU9EY3dLakFGQmdNclpYQURJUUFvTlBKc3ZYd29PYUFPSGtpbWxwQ0pmOUFDZEx0WjNVbkwKd2tqTm9QbkpoYU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFqTC9iVFdmSzZRWUgvCmNDZ29NdEsySHZWYnhEQUZCZ01yWlhBRFFRQVpRNk1ORmtreUYrdWx2aXQxWnVKcWNPVDd5OElpdmlkUEUzQU0KWGFaaHQ4MGsybHBRN2xkVnFmeUd1TTVHNy9nR1F2M202MXVMWGt4bjJmc0JGbnNHCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "675" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:21 GMT + - Thu, 24 Jul 2025 13:54:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3772,10 +3782,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 269118d4-2e84-4af8-a5c8-526cf5e03a89 + - e90ce112-1b5c-4baa-a612-3c308da0ac94 status: 200 OK code: 200 - duration: 31.7095ms + duration: 91.147708ms - id: 77 request: proto: HTTP/1.1 @@ -3792,7 +3802,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3800,20 +3810,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 675 + content_length: 727 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "675" + - "727" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:22 GMT + - Thu, 24 Jul 2025 13:54:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3821,10 +3831,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2a19d81-580d-41d0-96f1-23089d8ae204 + - 750720be-d5ea-4c60-aea6-8b316b6bc559 status: 200 OK code: 200 - duration: 205.9975ms + duration: 33.685792ms - id: 78 request: proto: HTTP/1.1 @@ -3841,28 +3851,28 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745/certificate - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1085 + content_length: 613 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU14N2tHUnh5RVNXQ0N1RlVrR2FLcHd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnWWpjMFpEZ3laVGd0TURNNU55MDBZV013TFdFMk1URXRabVl4Ck5ESTBOMlpsTnpRMU1CNFhEVEkxTURjeU1qQTRNemt4TVZvWERUTTFNRGN5TURBNE16a3hNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNCaU56UmtPREpsT0Mwd016azNMVFJoWXpBdFlUWXhNUzFtClpqRTBNalEzWm1VM05EVXdLakFGQmdNclpYQURJUUJrYXk4YlVKOTVZNGdQUXg4bEtGcGpnYVNveWtrRjVMaDIKSERsT3Z5YlVtNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlF5QnFVcVhVandLelFwCnlnSGJtQ21nTmZJRWxEQUZCZ01yWlhBRFFRQytvcmlEd3BYTVc1Y2VNRE9FQ2p2cW9ZenQ1N1AxcVM3N1BOTTQKYWdnZnIrcjZXWlJhMUxHWVRWNjlhZXRPV3lQMWNGVWZDaXNWRS9NNmpxV2tZb3NMCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1085" + - "613" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:22 GMT + - Thu, 24 Jul 2025 13:54:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3870,10 +3880,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bac1572-e0e0-4f5f-a0c4-c1b10ba0a94d + - 243bbe34-840f-44c5-91f7-e3d6113b76d8 status: 200 OK code: 200 - duration: 92.273167ms + duration: 221.864667ms - id: 79 request: proto: HTTP/1.1 @@ -3890,7 +3900,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3898,20 +3908,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 675 + content_length: 730 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "675" + - "730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:23 GMT + - Thu, 24 Jul 2025 13:54:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3919,10 +3929,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78803613-5583-4c16-a3e2-4fb15bee04e5 + - c44fa815-7de3-40bf-9090-1fa3be251ded status: 200 OK code: 200 - duration: 35.752625ms + duration: 94.394458ms - id: 80 request: proto: HTTP/1.1 @@ -3939,28 +3949,28 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 - method: DELETE + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 730 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "561" + - "730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:23 GMT + - Thu, 24 Jul 2025 13:55:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3968,10 +3978,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29f6f8af-2bf5-4d08-8bf1-c73bf969acfd + - 848232db-0235-4d39-90cf-4ab9f4eef463 status: 200 OK code: 200 - duration: 189.615417ms + duration: 81.965ms - id: 81 request: proto: HTTP/1.1 @@ -3988,7 +3998,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -3996,20 +4006,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 678 + content_length: 730 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "678" + - "730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:23 GMT + - Thu, 24 Jul 2025 13:55:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4017,10 +4027,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d845678d-02d8-448e-9ea5-81c51f1b9bfc + - 9300c028-383b-41a4-abff-be73e6641f42 status: 200 OK code: 200 - duration: 88.341ms + duration: 604.593542ms - id: 82 request: proto: HTTP/1.1 @@ -4037,7 +4047,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -4045,20 +4055,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 678 + content_length: 730 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "678" + - "730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:33 GMT + - Thu, 24 Jul 2025 13:55:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4066,10 +4076,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9b859fa-1271-4e71-98f7-1a3cefc256ad + - a069c1ec-49ab-4908-88cd-638c839505fa status: 200 OK code: 200 - duration: 90.207583ms + duration: 97.744791ms - id: 83 request: proto: HTTP/1.1 @@ -4086,7 +4096,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -4094,20 +4104,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 678 + content_length: 730 uncompressed: false - body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "678" + - "730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:43 GMT + - Thu, 24 Jul 2025 13:55:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4115,10 +4125,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 973553c3-931e-43d2-9ed3-73067739f5f7 + - f8db4fff-914f-41c8-aa1e-e465a65e1d7e status: 200 OK code: 200 - duration: 126.7525ms + duration: 105.346292ms - id: 84 request: proto: HTTP/1.1 @@ -4135,7 +4145,203 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 730 + uncompressed: false + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 13:55:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc66b498-7d9b-4d8d-ac51-74e451a41adf + status: 200 OK + code: 200 + duration: 95.965916ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 730 + uncompressed: false + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 13:55:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f33bd43f-38d5-474e-a220-201e80068875 + status: 200 OK + code: 200 + duration: 105.520666ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 730 + uncompressed: false + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 13:56:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1cd0ea47-705a-4847-b7d9-e3d6dd0492de + status: 200 OK + code: 200 + duration: 122.425458ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 730 + uncompressed: false + body: '{"created_at":"2025-07-24T13:48:41.096035Z","endpoints":[{"dns_record":"92881b2f-66bb-46d8-85e4-8402c224a287.mgdb.fr-par.scw.cloud","id":"e7346fb7-e557-483f-93ef-70d0538c615e","port":27017,"public_network":{}}],"id":"92881b2f-66bb-46d8-85e4-8402c224a287","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T13:48:41.489758Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 13:56:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d3883db-c73a-42ff-89ce-b9d5c1968215 + status: 200 OK + code: 200 + duration: 111.179417ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -4145,7 +4351,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"b74d82e8-0397-4ac0-a611-ff14247fe745","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"92881b2f-66bb-46d8-85e4-8402c224a287","type":"not_found"}' headers: Content-Length: - "129" @@ -4154,9 +4360,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:53 GMT + - Thu, 24 Jul 2025 13:56:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4164,11 +4370,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e864acdf-cb45-4660-a144-f692f9742931 + - 7c067498-e37c-4b6b-9884-456c1efc3e1c status: 404 Not Found code: 404 - duration: 37.298208ms - - id: 85 + duration: 28.304708ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4184,7 +4390,7 @@ interactions: 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/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/92881b2f-66bb-46d8-85e4-8402c224a287 method: GET response: proto: HTTP/2.0 @@ -4194,7 +4400,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"b74d82e8-0397-4ac0-a611-ff14247fe745","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"92881b2f-66bb-46d8-85e4-8402c224a287","type":"not_found"}' headers: Content-Length: - "129" @@ -4203,9 +4409,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 22 Jul 2025 08:51:53 GMT + - Thu, 24 Jul 2025 13:56:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4213,7 +4419,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1be2ed11-fac4-4e8e-8996-97dfc314a07b + - dc1651f8-51e6-4f78-9f46-7487972a887a status: 404 Not Found code: 404 - duration: 31.194459ms + duration: 31.232ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-data-source-basic.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-data-source-basic.cassette.yaml new file mode 100644 index 000000000..d55f0d530 --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-instance-data-source-basic.cassette.yaml @@ -0,0 +1,2945 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 318 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance-both","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' + 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/v1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5a124dd-7505-4772-b7a5-f71658719a29 + status: 200 OK + code: 200 + duration: 817.248542ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4276405e-8eb4-4dd6-be92-59ac1f30eafd + status: 200 OK + code: 200 + duration: 111.506375ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56369a3c-9d4e-4e83-a2e8-82801f65cc9b + status: 200 OK + code: 200 + duration: 99.468583ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:26:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96c70fd9-41aa-4e41-8799-abb082f90750 + status: 200 OK + code: 200 + duration: 187.856625ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc1f441a-c156-4602-b4e6-64f01efb9ded + status: 200 OK + code: 200 + duration: 105.163333ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 013d18c1-cf66-44ce-a8da-74ca03a74c2a + status: 200 OK + code: 200 + duration: 101.814292ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9624f0da-1fc8-4ab2-b298-8927dc3e2ed7 + status: 200 OK + code: 200 + duration: 95.142084ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6dab6bc-b379-472c-bf7c-ba5bf003cb54 + status: 200 OK + code: 200 + duration: 115.928708ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f4c7fea-07d0-4d39-883d-3525563b9720 + status: 200 OK + code: 200 + duration: 89.460708ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:27:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de1184be-c6b6-469b-9b1e-67acfdcb73c7 + status: 200 OK + code: 200 + duration: 101.743834ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b2da85e-d229-46b9-81b6-781f2ea13358 + status: 200 OK + code: 200 + duration: 108.754667ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df1d0c48-ee76-426e-87b7-1953d17fddb4 + status: 200 OK + code: 200 + duration: 77.717ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - baf45882-e322-46e3-ae11-061b4eef0e57 + status: 200 OK + code: 200 + duration: 141.917041ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e91bd582-6b77-4d66-b8e8-27cd369684c9 + status: 200 OK + code: 200 + duration: 93.614791ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ade4532-b503-40f7-b83b-7859196cff55 + status: 200 OK + code: 200 + duration: 116.726583ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:28:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49f4d94d-f770-41b5-a52e-ec1e52d8a8e7 + status: 200 OK + code: 200 + duration: 106.72175ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc57a9f2-c7b6-4b3b-af13-8c6cb1135049 + status: 200 OK + code: 200 + duration: 188.5855ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe5855c3-462f-49bd-8a8b-f28fd9dc0343 + status: 200 OK + code: 200 + duration: 123.63525ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61067566-1cf1-4ac2-8499-56b8f8861d37 + status: 200 OK + code: 200 + duration: 90.153ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96ec6fda-1592-4dad-8444-7e91156fa977 + status: 200 OK + code: 200 + duration: 94.941417ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49b3df6b-ce90-4f12-b77c-1537fe43a032 + status: 200 OK + code: 200 + duration: 150.556709ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:29:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 230f973d-449d-42c6-9eb8-ed30a990606a + status: 200 OK + code: 200 + duration: 103.328792ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51ea2a6d-395a-4ac5-9a15-0233d47ca50f + status: 200 OK + code: 200 + duration: 96.492667ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 014459fd-1b3d-48e3-bf7a-5e7d010b2010 + status: 200 OK + code: 200 + duration: 97.832833ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c890d8f-638f-463c-ad62-a1c3cc212203 + status: 200 OK + code: 200 + duration: 301.999792ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72d7e5d0-766a-45b3-aab2-3a2114c0b37a + status: 200 OK + code: 200 + duration: 90.996209ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f047c468-3216-4ead-8cdd-90165c798d91 + status: 200 OK + code: 200 + duration: 157.543834ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:30:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c7f06d7-8c1a-462e-a804-68f09a444ddb + status: 200 OK + code: 200 + duration: 104.726042ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d514748f-1756-400c-b603-5ac08065165f + status: 200 OK + code: 200 + duration: 109.392875ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be4d2cd5-cec7-4705-a167-c4e76d573c38 + status: 200 OK + code: 200 + duration: 110.995041ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21995294-0760-4bcd-9c47-1ccb6a49fb25 + status: 200 OK + code: 200 + duration: 96.3825ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 979b1342-65ec-4a15-b1d9-0620cae1bc98 + status: 200 OK + code: 200 + duration: 114.551875ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:31:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb50bd15-162e-49f6-baf3-a73c98aba9bb + status: 200 OK + code: 200 + duration: 209.428208ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa9c2eb9-3f73-4919-8060-d7a50ba426b7 + status: 200 OK + code: 200 + duration: 95.773792ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f7abac2-f2e3-468c-bb3d-f32874342587 + status: 200 OK + code: 200 + duration: 92.402709ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 688 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ffac697-b2c3-48c0-99e2-58513777183f + status: 200 OK + code: 200 + duration: 106.887ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6dc78d42-dd18-4d64-af7d-22390a31c141 + status: 200 OK + code: 200 + duration: 100.603583ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ee45e07-0251-4095-a7fd-5acc801a0710 + status: 200 OK + code: 200 + duration: 112.236792ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU5JM09UbDV1UE44ZVhOYWltWHNxaXd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTnpkbU1EWmtNR1V0T0RBeE1pMDBNV0V4TFRreFpHUXRaamcxClptTXlZamxrTmpnM01CNFhEVEkxTURjeU5ERTBNall6TmxvWERUTTFNRGN5TWpFME1qWXpObG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBM04yWXdObVF3WlMwNE1ERXlMVFF4WVRFdE9URmtaQzFtCk9EVm1ZekppT1dRMk9EY3dLakFGQmdNclpYQURJUUJ6WVZIMUdWdjg4S1ZVQ2VOK2lEMWVpeStDdTRzRDVaOXMKa2JSYUt3eXVhNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlRvMGJ1YzJqOVI0SlV3CjVLYzVPamtFUmx1ck5UQUZCZ01yWlhBRFFRQXZQR1lZL1ZxQmY0a1ltM2dYUHA4RFMwNFNDYUtPdjI5ajlGY3YKOEEzRnV0Y0RpVzJWNWZRbjc0eHdlbk5ibW83cm9hZDhhdXhWZ0VPSTZVZ2I5NXNECi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b94a5d65-066f-426a-9ee7-043c19f18574 + status: 200 OK + code: 200 + duration: 27.4985ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6063c3a0-f10d-48f0-9520-4b7e7f32a574 + status: 200 OK + code: 200 + duration: 39.504667ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20782e04-240a-4c0e-8b7d-42e3bdd6e3a3 + status: 200 OK + code: 200 + duration: 95.34225ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2410a8d1-d5a1-4fbc-8869-ef782706d309 + status: 200 OK + code: 200 + duration: 29.855666ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3148ba45-8914-459f-ae9f-fd064dcd4d3c + status: 200 OK + code: 200 + duration: 31.945167ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84c9e3ea-51b5-4754-b608-85bb29d40c01 + status: 200 OK + code: 200 + duration: 105.880959ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb50ec65-6629-4da9-9c4f-d38d408176e1 + status: 200 OK + code: 200 + duration: 90.032791ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3934961-0c2e-4240-8553-ffd591af3ab5 + status: 200 OK + code: 200 + duration: 96.682292ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU5JM09UbDV1UE44ZVhOYWltWHNxaXd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTnpkbU1EWmtNR1V0T0RBeE1pMDBNV0V4TFRreFpHUXRaamcxClptTXlZamxrTmpnM01CNFhEVEkxTURjeU5ERTBNall6TmxvWERUTTFNRGN5TWpFME1qWXpObG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBM04yWXdObVF3WlMwNE1ERXlMVFF4WVRFdE9URmtaQzFtCk9EVm1ZekppT1dRMk9EY3dLakFGQmdNclpYQURJUUJ6WVZIMUdWdjg4S1ZVQ2VOK2lEMWVpeStDdTRzRDVaOXMKa2JSYUt3eXVhNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlRvMGJ1YzJqOVI0SlV3CjVLYzVPamtFUmx1ck5UQUZCZ01yWlhBRFFRQXZQR1lZL1ZxQmY0a1ltM2dYUHA4RFMwNFNDYUtPdjI5ajlGY3YKOEEzRnV0Y0RpVzJWNWZRbjc0eHdlbk5ibW83cm9hZDhhdXhWZ0VPSTZVZ2I5NXNECi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ae151e2-7842-4997-a693-c8e89b0d099c + status: 200 OK + code: 200 + duration: 27.766833ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e8ab94d-824d-4a47-8cfb-da7d46f1229c + status: 200 OK + code: 200 + duration: 30.038291ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d8b5cee-2bf9-441b-86a8-127788865766 + status: 200 OK + code: 200 + duration: 107.685041ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b4ca5f8-d36a-4ca5-a915-c3b8276e4b0e + status: 200 OK + code: 200 + duration: 34.957333ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9677b844-8e54-4bdf-8d42-d9e7af2345f0 + status: 200 OK + code: 200 + duration: 86.926667ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances?name=test-mongodb-instance-both&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 714 + uncompressed: false + body: '{"instances":[{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d9fc008-fe72-4f08-90a3-3fab17276a70 + status: 200 OK + code: 200 + duration: 109.157792ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5af4d00a-c072-482b-ba20-ad091a435769 + status: 200 OK + code: 200 + duration: 32.204125ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3425515d-1515-46ff-ae51-96eb031856c5 + status: 200 OK + code: 200 + duration: 31.163667ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 567 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "567" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 279c8f1f-e68b-4580-8ef2-3519e507cc81 + status: 200 OK + code: 200 + duration: 205.407959ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 684 + uncompressed: false + body: '{"created_at":"2025-07-24T14:26:35.801249Z","endpoints":[{"dns_record":"77f06d0e-8012-41a1-91dd-f85fc2b9d687.mgdb.fr-par.scw.cloud","id":"13b644a3-630d-4be9-ba16-99f7b5378f58","port":27017,"public_network":{}}],"id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","name":"test-mongodb-instance-both","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:26:36.214743Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "684" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d16966b-0d3c-411f-bdc2-f402135f8c64 + status: 200 OK + code: 200 + duration: 33.693958ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7555a132-8a25-460b-a00c-68b0042d8c72 + status: 404 Not Found + code: 404 + duration: 25.831583ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e7c677b-a638-4337-97d0-1e168a96db77 + status: 404 Not Found + code: 404 + duration: 32.924292ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53720f46-48af-43b2-99c2-40a203d3554b + status: 404 Not Found + code: 404 + duration: 24.79375ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/77f06d0e-8012-41a1-91dd-f85fc2b9d687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"77f06d0e-8012-41a1-91dd-f85fc2b9d687","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:32:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a703aa5-b7c8-49cf-8b47-e76b31b87546 + status: 404 Not Found + code: 404 + duration: 25.75075ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-with-private-network.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-networks.cassette.yaml similarity index 50% rename from internal/services/mongodb/testdata/mongo-db-instance-with-private-network.cassette.yaml rename to internal/services/mongodb/testdata/mongo-db-instance-networks.cassette.yaml index 97390a694..e219bbce4 100644 --- a/internal/services/mongodb/testdata/mongo-db-instance-with-private-network.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-instance-networks.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:21.977894Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","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-07-21T12:44:21.977894Z","id":"19c103df-30ce-4f28-89f6-345179948836","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.124.0/22","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:44:21.977894Z","id":"98a7bf38-cabd-4620-b00c-51ea7b26e095","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:a40a::/64","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - "1089" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:22 GMT + - Thu, 24 Jul 2025 14:02:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 095b70f2-dae1-4df8-b9e5-e0fafd092b4b + - 69affa8b-ec7e-4803-a368-2421c1190b38 status: 200 OK code: 200 - duration: 874.944792ms + duration: 922.40025ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 152 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"update_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f4c962c7-58c1-46da-96c7-5f5c61e59a26 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:21.977894Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","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-07-21T12:44:21.977894Z","id":"19c103df-30ce-4f28-89f6-345179948836","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.124.0/22","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:44:21.977894Z","id":"98a7bf38-cabd-4620-b00c-51ea7b26e095","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:a40a::/64","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1089" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:22 GMT + - Thu, 24 Jul 2025 14:02:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 589f5cf5-861d-40c7-84a7-1352b7ba5eec + - afc977d6-95de-4b4c-8b41-9f0a16f553fe status: 200 OK code: 200 - duration: 213.360791ms + duration: 1.001050667s - id: 2 request: proto: HTTP/1.1 @@ -117,7 +119,7 @@ interactions: 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/f4c962c7-58c1-46da-96c7-5f5c61e59a26 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b method: GET response: proto: HTTP/2.0 @@ -127,7 +129,7 @@ interactions: trailer: {} content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:21.977894Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","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-07-21T12:44:21.977894Z","id":"19c103df-30ce-4f28-89f6-345179948836","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.124.0/22","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:44:21.977894Z","id":"98a7bf38-cabd-4620-b00c-51ea7b26e095","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:a40a::/64","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - "1089" @@ -136,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:23 GMT + - Thu, 24 Jul 2025 14:02:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40893c04-96c8-40e2-bb6c-145a9b86e93b + - 2b8c0f36-8b93-4911-86b1-5c597b232ab0 status: 200 OK code: 200 - duration: 182.88675ms + duration: 110.839916ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +168,7 @@ interactions: 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/f4c962c7-58c1-46da-96c7-5f5c61e59a26 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f method: GET response: proto: HTTP/2.0 @@ -174,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:21.977894Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","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-07-21T12:44:21.977894Z","id":"19c103df-30ce-4f28-89f6-345179948836","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.124.0/22","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:44:21.977894Z","id":"98a7bf38-cabd-4620-b00c-51ea7b26e095","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:a40a::/64","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1089" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:24 GMT + - Thu, 24 Jul 2025 14:02:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,50 +197,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bdc4f0f-2767-47b5-8ed8-8b7dfec83d33 + - 11c94d90-559e-4f59-bfb1-6e45a42ef760 status: 200 OK code: 200 - duration: 28.740625ms + duration: 100.29225ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 380 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-private-network","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}]}' + 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/v1/regions/fr-par/instances - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:25 GMT + - Thu, 24 Jul 2025 14:02:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bebd6de1-0cff-4537-a8a8-9df0e7df555c + - 2b4283d6-b007-468d-8cba-6049caa089b8 status: 200 OK code: 200 - duration: 651.282083ms + duration: 28.511334ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +266,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:25 GMT + - Thu, 24 Jul 2025 14:02:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0046003-37aa-4bcb-8a41-e80848a97d84 + - f5c1d1d5-adf9-41b4-9b8a-a0a6f928e95c status: 200 OK code: 200 - duration: 177.576125ms + duration: 202.692083ms - id: 6 request: proto: HTTP/1.1 @@ -315,7 +315,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:36 GMT + - Thu, 24 Jul 2025 14:02:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe1ceabc-68a5-41e8-887b-286ca385d6c8 + - 9280ea0f-c922-4aa9-a5f1-2d3c32ca06e9 status: 200 OK code: 200 - duration: 210.734958ms + duration: 151.156583ms - id: 7 request: proto: HTTP/1.1 @@ -364,7 +364,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:46 GMT + - Thu, 24 Jul 2025 14:02:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,28 +393,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3245cd83-a9e7-446a-812a-27aa7d920940 + - f2bed2d9-239a-4f86-80e7-c68843a386df status: 200 OK code: 200 - duration: 90.232292ms + duration: 151.158375ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 380 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-private-network","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}]}' 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -423,7 +425,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -432,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:44:56 GMT + - Thu, 24 Jul 2025 14:02:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53a39a0f-7db8-49d8-a96c-ba981e957ac7 + - 3288bf80-7a52-4d87-80a1-8ed923f99b70 status: 200 OK code: 200 - duration: 89.889ms + duration: 655.63625ms - id: 9 request: proto: HTTP/1.1 @@ -462,7 +464,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -472,7 +474,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -481,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:45:06 GMT + - Thu, 24 Jul 2025 14:02:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e357975-84b2-41c7-b55f-0987778b3f14 + - 247cd73c-b686-40d3-bdb7-697d87f5944f status: 200 OK code: 200 - duration: 88.796209ms + duration: 124.297833ms - id: 10 request: proto: HTTP/1.1 @@ -511,7 +513,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -521,7 +523,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -530,9 +532,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:45:16 GMT + - Thu, 24 Jul 2025 14:03:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2cfa9dd-8ed9-4e95-9a11-8534af2759fb + - b4ad7120-06f3-444c-95e0-fa46fb0bbebe status: 200 OK code: 200 - duration: 169.384125ms + duration: 98.204042ms - id: 11 request: proto: HTTP/1.1 @@ -560,7 +562,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -570,7 +572,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -579,9 +581,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:45:26 GMT + - Thu, 24 Jul 2025 14:03:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20186099-3532-490a-a1cf-b5c5a113c81d + - fc5edc1b-4763-4d67-a54b-bb8dbebde291 status: 200 OK code: 200 - duration: 77.513125ms + duration: 108.592916ms - id: 12 request: proto: HTTP/1.1 @@ -609,7 +611,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -619,7 +621,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -628,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:45:36 GMT + - Thu, 24 Jul 2025 14:03:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ee9e3ca-e8d5-4e53-8c81-febafac38cf9 + - 6870d520-b196-4fbb-b791-31d3f1c157f8 status: 200 OK code: 200 - duration: 92.519542ms + duration: 303.434ms - id: 13 request: proto: HTTP/1.1 @@ -658,7 +660,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -668,7 +670,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -677,9 +679,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:45:47 GMT + - Thu, 24 Jul 2025 14:03:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c139760-8a09-492c-9de3-d187e4d2f063 + - 876dc470-956c-4941-be76-2e734f48cb21 status: 200 OK code: 200 - duration: 232.669458ms + duration: 123.519625ms - id: 14 request: proto: HTTP/1.1 @@ -707,7 +709,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -717,7 +719,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -726,9 +728,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:45:57 GMT + - Thu, 24 Jul 2025 14:03:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e10a0ece-b33e-4e70-a37d-9c76c80cada2 + - b2862d82-ae2e-4e3e-b1eb-ca3a2cc5c45f status: 200 OK code: 200 - duration: 175.050042ms + duration: 101.583958ms - id: 15 request: proto: HTTP/1.1 @@ -756,7 +758,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -766,7 +768,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -775,9 +777,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:46:07 GMT + - Thu, 24 Jul 2025 14:03:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afce38c4-15a4-428b-aa59-9f60c5a205d6 + - 0e76b2b2-24f1-41c4-b1f3-e97510036825 status: 200 OK code: 200 - duration: 89.06875ms + duration: 101.856458ms - id: 16 request: proto: HTTP/1.1 @@ -805,7 +807,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -815,7 +817,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -824,9 +826,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:46:17 GMT + - Thu, 24 Jul 2025 14:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a4241f5-d10d-4d23-a1cc-db17518604d4 + - 49877f07-cc02-40cd-acbb-6b4706c1ed0d status: 200 OK code: 200 - duration: 99.073167ms + duration: 119.347458ms - id: 17 request: proto: HTTP/1.1 @@ -854,7 +856,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -864,7 +866,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -873,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:46:27 GMT + - Thu, 24 Jul 2025 14:04:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 031cda6b-776e-4d58-88a4-c6fb22630208 + - 0d8179ff-fe1e-41c1-b17d-39168398c919 status: 200 OK code: 200 - duration: 260.231333ms + duration: 195.913041ms - id: 18 request: proto: HTTP/1.1 @@ -903,7 +905,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -913,7 +915,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -922,9 +924,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:46:37 GMT + - Thu, 24 Jul 2025 14:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cd4e9b0-8091-4f12-a4ba-e4309340051b + - 70c5629f-cf1b-4ac4-b1e9-634fb37d89ac status: 200 OK code: 200 - duration: 91.890625ms + duration: 93.706208ms - id: 19 request: proto: HTTP/1.1 @@ -952,7 +954,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -962,7 +964,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -971,9 +973,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:46:47 GMT + - Thu, 24 Jul 2025 14:04:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29b6010e-d324-4a1d-a707-c7754ff8cc83 + - f0278e10-94b9-4aff-aa3c-173d9d110e81 status: 200 OK code: 200 - duration: 94.03225ms + duration: 217.288916ms - id: 20 request: proto: HTTP/1.1 @@ -1001,7 +1003,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1011,7 +1013,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1020,9 +1022,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:46:58 GMT + - Thu, 24 Jul 2025 14:04:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1030,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47112079-4810-4504-a409-a2052fd4b5de + - a12b4ec0-ead0-49e7-a03c-0e36985bf32f status: 200 OK code: 200 - duration: 85.110917ms + duration: 157.552792ms - id: 21 request: proto: HTTP/1.1 @@ -1050,7 +1052,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1060,7 +1062,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1069,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:47:08 GMT + - Thu, 24 Jul 2025 14:04:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0edcd6e-4823-49d3-bd70-2d485274ab48 + - 08f73536-5700-4443-9abe-8cf073de50d7 status: 200 OK code: 200 - duration: 95.214625ms + duration: 125.258167ms - id: 22 request: proto: HTTP/1.1 @@ -1099,7 +1101,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1109,7 +1111,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1118,9 +1120,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:47:18 GMT + - Thu, 24 Jul 2025 14:05:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1128,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 005ba3b3-b8bc-4a81-99ee-4affcf5e8242 + - f5d39293-b6d5-4745-8400-64207a023e20 status: 200 OK code: 200 - duration: 84.677416ms + duration: 125.553084ms - id: 23 request: proto: HTTP/1.1 @@ -1148,7 +1150,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1158,7 +1160,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1167,9 +1169,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:47:28 GMT + - Thu, 24 Jul 2025 14:05:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1177,10 +1179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58c4fd4d-a833-4dae-95ec-40e671c4d4d8 + - b5e4b60e-ad4a-4feb-93b2-28ee8dbad690 status: 200 OK code: 200 - duration: 77.292375ms + duration: 159.066ms - id: 24 request: proto: HTTP/1.1 @@ -1197,7 +1199,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1207,7 +1209,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1216,9 +1218,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:47:38 GMT + - Thu, 24 Jul 2025 14:05:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1226,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6d97f2e-c64c-4e63-be5b-78e6a710071b + - 32502165-f169-4ea1-b136-cfc941767081 status: 200 OK code: 200 - duration: 235.090833ms + duration: 86.810541ms - id: 25 request: proto: HTTP/1.1 @@ -1246,7 +1248,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1256,7 +1258,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1265,9 +1267,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:47:48 GMT + - Thu, 24 Jul 2025 14:05:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1275,10 +1277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf7de114-04d2-432f-83fa-5f814dd8c38d + - 0e29cd1e-a27c-49cb-9f30-097422f4cc10 status: 200 OK code: 200 - duration: 88.285959ms + duration: 113.113709ms - id: 26 request: proto: HTTP/1.1 @@ -1295,7 +1297,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1305,7 +1307,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1314,9 +1316,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:47:58 GMT + - Thu, 24 Jul 2025 14:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1324,10 +1326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6a339fc-915e-48e6-a313-6427d1885def + - 9d8bc5da-33a0-4614-8207-2c12067b60b7 status: 200 OK code: 200 - duration: 109.0575ms + duration: 138.8835ms - id: 27 request: proto: HTTP/1.1 @@ -1344,7 +1346,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1354,7 +1356,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1363,9 +1365,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:48:08 GMT + - Thu, 24 Jul 2025 14:05:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1373,10 +1375,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 256545d6-922a-4d57-acec-c6ca6b83dc53 + - 840673c0-2f29-4581-adf1-90b064cf7fe5 status: 200 OK code: 200 - duration: 107.704584ms + duration: 87.8395ms - id: 28 request: proto: HTTP/1.1 @@ -1393,7 +1395,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1403,7 +1405,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1412,9 +1414,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:48:18 GMT + - Thu, 24 Jul 2025 14:06:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1422,10 +1424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d964a03-a040-4e58-835f-7fda2a2888cb + - 702268d0-1992-4f8b-a4c2-34babafd9c77 status: 200 OK code: 200 - duration: 103.220917ms + duration: 138.56475ms - id: 29 request: proto: HTTP/1.1 @@ -1442,7 +1444,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1452,7 +1454,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1461,9 +1463,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:48:29 GMT + - Thu, 24 Jul 2025 14:06:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1471,10 +1473,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0eb15822-95d6-4091-8511-bccc73af4c3b + - 5736a4e9-81a3-42e0-aa85-46bfd8820f26 status: 200 OK code: 200 - duration: 91.528417ms + duration: 113.704375ms - id: 30 request: proto: HTTP/1.1 @@ -1491,7 +1493,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1501,7 +1503,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1510,9 +1512,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:48:39 GMT + - Thu, 24 Jul 2025 14:06:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1520,10 +1522,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39392e99-fb49-4be7-813b-d697af32a62d + - 5bafd43b-ef76-4a17-8f4b-d985d1b7511c status: 200 OK code: 200 - duration: 98.807375ms + duration: 82.009667ms - id: 31 request: proto: HTTP/1.1 @@ -1540,7 +1542,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1550,7 +1552,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1559,9 +1561,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:48:49 GMT + - Thu, 24 Jul 2025 14:06:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1569,10 +1571,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfca800b-8772-4164-a03b-f4e03e6430f8 + - 3d680f0a-6f78-4d22-a999-24d70dff67a7 status: 200 OK code: 200 - duration: 141.859625ms + duration: 169.694291ms - id: 32 request: proto: HTTP/1.1 @@ -1589,7 +1591,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1599,7 +1601,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1608,9 +1610,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:48:59 GMT + - Thu, 24 Jul 2025 14:06:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1618,10 +1620,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b445d0d-a006-48d3-b3bf-65f3a622d174 + - 0a4ecd8c-0c58-4919-97ce-844215a8468d status: 200 OK code: 200 - duration: 91.191833ms + duration: 110.276125ms - id: 33 request: proto: HTTP/1.1 @@ -1638,7 +1640,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1648,7 +1650,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1657,9 +1659,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:49:09 GMT + - Thu, 24 Jul 2025 14:06:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,10 +1669,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a002059-5b84-4c06-8d52-720ea94e4462 + - e26c1129-57a5-453f-b572-22f7d05d2793 status: 200 OK code: 200 - duration: 84.661625ms + duration: 98.712416ms - id: 34 request: proto: HTTP/1.1 @@ -1687,7 +1689,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1697,7 +1699,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1706,9 +1708,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:49:19 GMT + - Thu, 24 Jul 2025 14:07:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1716,10 +1718,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05512d2d-a602-4b62-b4a2-879cd83d9c78 + - 9d47cd24-e799-4160-ac2c-b8e3dfc5dc39 status: 200 OK code: 200 - duration: 99.569667ms + duration: 89.193583ms - id: 35 request: proto: HTTP/1.1 @@ -1736,7 +1738,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1746,7 +1748,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1755,9 +1757,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:49:29 GMT + - Thu, 24 Jul 2025 14:07:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1765,10 +1767,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4ce8323-1b96-452e-a3bb-4df5ee7fda30 + - d2f7ff57-dd7c-4911-b043-52117e3f7289 status: 200 OK code: 200 - duration: 155.825875ms + duration: 148.458542ms - id: 36 request: proto: HTTP/1.1 @@ -1785,7 +1787,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1795,7 +1797,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1804,9 +1806,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:49:39 GMT + - Thu, 24 Jul 2025 14:07:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1814,10 +1816,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccf937b6-81c2-4b8b-8a12-f32677ecb93d + - 306cef89-8cb1-466e-b824-5b58d3c6b337 status: 200 OK code: 200 - duration: 172.81625ms + duration: 88.348833ms - id: 37 request: proto: HTTP/1.1 @@ -1834,7 +1836,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1844,7 +1846,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1853,9 +1855,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:49:50 GMT + - Thu, 24 Jul 2025 14:07:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1863,10 +1865,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 545d790d-fd22-4796-a13a-78727baaccd0 + - 5cb624f8-bdb4-4fc0-9fee-314a0050f748 status: 200 OK code: 200 - duration: 74.998833ms + duration: 97.544167ms - id: 38 request: proto: HTTP/1.1 @@ -1883,7 +1885,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1893,7 +1895,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1902,9 +1904,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:50:00 GMT + - Thu, 24 Jul 2025 14:07:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1912,10 +1914,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b415eaad-1c46-438a-b3f0-527e3cdcb0d9 + - e2189634-7486-449f-97f7-d6ea0471694c status: 200 OK code: 200 - duration: 84.64725ms + duration: 92.707333ms - id: 39 request: proto: HTTP/1.1 @@ -1932,7 +1934,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1942,7 +1944,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -1951,9 +1953,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:50:10 GMT + - Thu, 24 Jul 2025 14:07:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1961,10 +1963,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd3ca642-3802-4e1b-ad91-0406214b5365 + - 087cf3d2-d74d-47f7-8f87-987cff40d120 status: 200 OK code: 200 - duration: 82.112958ms + duration: 246.694084ms - id: 40 request: proto: HTTP/1.1 @@ -1981,7 +1983,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -1991,7 +1993,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2000,9 +2002,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:50:20 GMT + - Thu, 24 Jul 2025 14:08:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2010,10 +2012,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f3fe1cb-a03b-4569-b185-1c34910a52e5 + - c7430aa4-2bd5-4fad-a6ad-6e780ea93004 status: 200 OK code: 200 - duration: 107.738583ms + duration: 107.802958ms - id: 41 request: proto: HTTP/1.1 @@ -2030,7 +2032,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2040,7 +2042,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2049,9 +2051,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:50:30 GMT + - Thu, 24 Jul 2025 14:08:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2059,10 +2061,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d80073a-f945-46e4-bc51-ab87fd12da2e + - 7a5adc41-7ffd-4c2d-9a77-9bd40a991aee status: 200 OK code: 200 - duration: 87.857333ms + duration: 89.152416ms - id: 42 request: proto: HTTP/1.1 @@ -2079,7 +2081,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2089,7 +2091,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2098,9 +2100,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:50:40 GMT + - Thu, 24 Jul 2025 14:08:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2108,10 +2110,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e80296e5-a86a-446e-8774-acdba7ada37e + - 07817378-749e-43a7-9f13-aa6173b68a3f status: 200 OK code: 200 - duration: 250.318625ms + duration: 96.114416ms - id: 43 request: proto: HTTP/1.1 @@ -2128,7 +2130,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2138,7 +2140,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2147,9 +2149,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:50:50 GMT + - Thu, 24 Jul 2025 14:08:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2157,10 +2159,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7047e2d2-1004-43c1-88bc-8d5149502e40 + - 46682525-bc81-419a-a93f-2cb2a2a8f26d status: 200 OK code: 200 - duration: 86.6215ms + duration: 251.283833ms - id: 44 request: proto: HTTP/1.1 @@ -2177,7 +2179,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2187,7 +2189,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2196,9 +2198,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:51:00 GMT + - Thu, 24 Jul 2025 14:08:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2206,10 +2208,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fad6f9d8-4d89-434f-b878-0882b9bf039f + - 2d2cfb8b-a464-429d-9b26-b0c2bffb5aca status: 200 OK code: 200 - duration: 120.804125ms + duration: 84.524458ms - id: 45 request: proto: HTTP/1.1 @@ -2226,7 +2228,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2236,7 +2238,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2245,9 +2247,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:51:10 GMT + - Thu, 24 Jul 2025 14:08:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2255,10 +2257,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb80304d-6052-485b-b113-a9ec624a94f0 + - 1a6e9e99-4db7-4888-9f4b-5ff6f688c8b3 status: 200 OK code: 200 - duration: 80.313625ms + duration: 115.031125ms - id: 46 request: proto: HTTP/1.1 @@ -2275,7 +2277,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2285,7 +2287,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2294,9 +2296,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:51:21 GMT + - Thu, 24 Jul 2025 14:09:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2304,10 +2306,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c8bab61-ba7c-4c94-ac4e-efdd063912c1 + - 4ee801c5-0bbd-409e-8a32-e5924b385fca status: 200 OK code: 200 - duration: 92.017541ms + duration: 115.626792ms - id: 47 request: proto: HTTP/1.1 @@ -2324,7 +2326,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2334,7 +2336,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2343,9 +2345,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:51:31 GMT + - Thu, 24 Jul 2025 14:09:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2353,10 +2355,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a900a8a5-e80f-4325-a51e-2c1bb961b977 + - 08bec3cc-242b-46d2-ab33-34e17525a61a status: 200 OK code: 200 - duration: 180.557542ms + duration: 94.134125ms - id: 48 request: proto: HTTP/1.1 @@ -2373,7 +2375,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2383,7 +2385,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2392,9 +2394,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:51:41 GMT + - Thu, 24 Jul 2025 14:09:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2402,10 +2404,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44bfe3ae-80c0-4104-a947-4f0f1da9b37c + - 17a31ca0-3c2f-43dd-b554-a07f4af00e8d status: 200 OK code: 200 - duration: 129.035666ms + duration: 206.265917ms - id: 49 request: proto: HTTP/1.1 @@ -2422,7 +2424,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2432,7 +2434,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2441,9 +2443,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:51:51 GMT + - Thu, 24 Jul 2025 14:09:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2451,10 +2453,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97102ff7-794e-4528-80bc-89e959272476 + - cdc0459d-f9c5-46e2-aa45-84558e0dcff1 status: 200 OK code: 200 - duration: 99.71475ms + duration: 79.6555ms - id: 50 request: proto: HTTP/1.1 @@ -2471,7 +2473,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2481,7 +2483,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2490,9 +2492,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:52:01 GMT + - Thu, 24 Jul 2025 14:09:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2500,10 +2502,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d9eea6c-6cc4-4741-8042-b374485fc171 + - 628b7b4b-5b0a-4ade-b31b-023ecbb5df3d status: 200 OK code: 200 - duration: 90.9305ms + duration: 96.950959ms - id: 51 request: proto: HTTP/1.1 @@ -2520,7 +2522,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2530,7 +2532,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2539,9 +2541,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:52:11 GMT + - Thu, 24 Jul 2025 14:09:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2549,10 +2551,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e4edbd-63e7-4016-b415-74c18755cc9f + - 64a14f0a-d2a1-42ce-9a3a-fb59264d0415 status: 200 OK code: 200 - duration: 76.099292ms + duration: 302.588042ms - id: 52 request: proto: HTTP/1.1 @@ -2569,7 +2571,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2579,7 +2581,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2588,9 +2590,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:52:21 GMT + - Thu, 24 Jul 2025 14:10:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2598,10 +2600,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76576a91-a3b3-4ed9-9eaf-73f99f521cac + - ca7e8a77-a4b5-4b64-bc1d-94b55e9cc0b2 status: 200 OK code: 200 - duration: 108.768208ms + duration: 104.656833ms - id: 53 request: proto: HTTP/1.1 @@ -2618,7 +2620,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2628,7 +2630,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2637,9 +2639,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:52:31 GMT + - Thu, 24 Jul 2025 14:10:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2647,10 +2649,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06103a86-8fa0-42d5-9bb6-a2fe02fac78e + - 525e9b11-2998-49c1-adc4-034b775f0b7e status: 200 OK code: 200 - duration: 87.53925ms + duration: 298.828834ms - id: 54 request: proto: HTTP/1.1 @@ -2667,7 +2669,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2677,7 +2679,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2686,9 +2688,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:52:41 GMT + - Thu, 24 Jul 2025 14:10:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2696,10 +2698,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56a66a51-6e3b-4c68-822b-990e664e0755 + - 49514d91-719a-4de0-b775-3ae62bd9d0f5 status: 200 OK code: 200 - duration: 99.489583ms + duration: 133.435875ms - id: 55 request: proto: HTTP/1.1 @@ -2716,7 +2718,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2726,7 +2728,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2735,9 +2737,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:52:51 GMT + - Thu, 24 Jul 2025 14:10:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2745,10 +2747,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b00cd62a-c353-4155-b7f7-e6dae7c16a65 + - a7e5dfa7-2b94-4548-bf3a-24e67bf7be8e status: 200 OK code: 200 - duration: 91.992084ms + duration: 245.183167ms - id: 56 request: proto: HTTP/1.1 @@ -2765,7 +2767,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2775,7 +2777,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2784,9 +2786,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:53:02 GMT + - Thu, 24 Jul 2025 14:10:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2794,10 +2796,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 836eaa87-4758-4936-83eb-8095ebb396a4 + - 41db4e72-80f2-47e4-a19a-8c278aeb99a0 status: 200 OK code: 200 - duration: 102.886375ms + duration: 243.727125ms - id: 57 request: proto: HTTP/1.1 @@ -2814,7 +2816,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2824,7 +2826,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2833,9 +2835,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:53:12 GMT + - Thu, 24 Jul 2025 14:10:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2843,10 +2845,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acbca990-391d-4c1d-a583-42b5169906f9 + - 76975c7d-f516-493a-a5b8-9b7a91000d90 status: 200 OK code: 200 - duration: 279.8895ms + duration: 200.042042ms - id: 58 request: proto: HTTP/1.1 @@ -2863,7 +2865,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2873,7 +2875,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2882,9 +2884,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:53:22 GMT + - Thu, 24 Jul 2025 14:11:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2892,10 +2894,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05f60cda-4ca8-4a26-a64b-f296e3abfbbb + - 565519e7-f8c2-4545-8522-b8a3bcdde85b status: 200 OK code: 200 - duration: 85.232083ms + duration: 99.841583ms - id: 59 request: proto: HTTP/1.1 @@ -2912,7 +2914,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2922,7 +2924,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2931,9 +2933,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:53:32 GMT + - Thu, 24 Jul 2025 14:11:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2941,10 +2943,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d461211-0d3f-42ac-9e37-719ad676617a + - 3284cf2d-cf40-4490-9133-c2f36b10f9d3 status: 200 OK code: 200 - duration: 89.818791ms + duration: 110.957291ms - id: 60 request: proto: HTTP/1.1 @@ -2961,7 +2963,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -2971,7 +2973,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -2980,9 +2982,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:53:42 GMT + - Thu, 24 Jul 2025 14:11:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2990,10 +2992,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33215633-4feb-4a33-9124-a23cbdc43768 + - 5e366973-8844-4015-8470-2ee2a8deef5d status: 200 OK code: 200 - duration: 77.771958ms + duration: 94.555875ms - id: 61 request: proto: HTTP/1.1 @@ -3010,7 +3012,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3020,7 +3022,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -3029,9 +3031,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:53:52 GMT + - Thu, 24 Jul 2025 14:11:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3039,10 +3041,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92b57da1-a714-40f0-a3b1-6b4e3201a8a2 + - a5e47a54-df0e-4652-b31f-5be845fff7b7 status: 200 OK code: 200 - duration: 78.582833ms + duration: 235.180042ms - id: 62 request: proto: HTTP/1.1 @@ -3059,7 +3061,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3069,7 +3071,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -3078,9 +3080,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:54:02 GMT + - Thu, 24 Jul 2025 14:11:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3088,10 +3090,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 481f715b-0f43-4b6a-8e7e-9111d44975fc + - 912d5c9c-c42f-4f30-9a93-063d508b1648 status: 200 OK code: 200 - duration: 170.342167ms + duration: 95.466458ms - id: 63 request: proto: HTTP/1.1 @@ -3108,7 +3110,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3118,7 +3120,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -3127,9 +3129,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:54:12 GMT + - Thu, 24 Jul 2025 14:12:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3137,10 +3139,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 396ff75f-6e83-42e1-9d89-cc804247bb96 + - 342b6542-0ac1-4147-8ed8-ce76034b296d status: 200 OK code: 200 - duration: 84.666041ms + duration: 171.499666ms - id: 64 request: proto: HTTP/1.1 @@ -3157,7 +3159,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3167,7 +3169,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -3176,9 +3178,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:54:23 GMT + - Thu, 24 Jul 2025 14:12:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3186,10 +3188,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 580feacd-6aa6-4f39-af05-1870dace333a + - 7f08d7af-1c64-423f-a55a-2a9e4e7f6c6c status: 200 OK code: 200 - duration: 93.421875ms + duration: 80.312959ms - id: 65 request: proto: HTTP/1.1 @@ -3206,7 +3208,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3216,7 +3218,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -3225,9 +3227,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:54:33 GMT + - Thu, 24 Jul 2025 14:12:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3235,10 +3237,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f96442bd-264b-4a7d-8c93-813ab7ee67b7 + - 405b7946-d8a7-4c42-9abd-dbfc678ba7da status: 200 OK code: 200 - duration: 294.051417ms + duration: 197.467458ms - id: 66 request: proto: HTTP/1.1 @@ -3255,7 +3257,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3265,7 +3267,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "774" @@ -3274,9 +3276,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:54:43 GMT + - Thu, 24 Jul 2025 14:12:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3284,10 +3286,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2213231a-7f85-428f-b0cb-d3a1e71c8657 + - bf44c579-7963-472a-a4f7-6bd35afdf5e6 status: 200 OK code: 200 - duration: 96.859292ms + duration: 84.140208ms - id: 67 request: proto: HTTP/1.1 @@ -3304,7 +3306,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3312,20 +3314,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:54:53 GMT + - Thu, 24 Jul 2025 14:12:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3333,10 +3335,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27345823-a98b-42ae-bf0d-ff1c5633852a + - 718625f9-9a93-47bf-b770-030bf253bef7 status: 200 OK code: 200 - duration: 85.934042ms + duration: 101.971041ms - id: 68 request: proto: HTTP/1.1 @@ -3353,7 +3355,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3361,20 +3363,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:55:03 GMT + - Thu, 24 Jul 2025 14:12:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3382,10 +3384,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 703a6381-38d3-4cce-beb3-70d794e38c55 + - 3db840ba-48a6-4da0-b019-c59a0b11a472 status: 200 OK code: 200 - duration: 94.610959ms + duration: 100.070209ms - id: 69 request: proto: HTTP/1.1 @@ -3402,7 +3404,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9ca9ff7b-832e-4319-b0bd-b78a7be01f2b&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=97a25014-d5c7-4cb8-afae-308d13c171cd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -3410,20 +3412,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 546 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.17.216.2/22","created_at":"2025-07-24T14:06:11.965074Z","id":"c932c0d8-c90b-43b1-991a-55e536e7794c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","mac_address":"02:00:00:1D:58:6A","name":"97a25014-d5c7-4cb8-afae-308d13c171cd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"d03ddb98-3022-481b-9b0f-99dfd72df50d"},"tags":[],"updated_at":"2025-07-24T14:11:01.703044Z","zone":null}],"total_count":1}' headers: Content-Length: - - "774" + - "546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:55:13 GMT + - Thu, 24 Jul 2025 14:12:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3431,10 +3433,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70e438de-1c87-4c95-a27d-4feab9a583e8 + - 754d45c4-616b-4256-ad35-c1dddf867582 status: 200 OK code: 200 - duration: 86.637583ms + duration: 121.753875ms - id: 70 request: proto: HTTP/1.1 @@ -3451,7 +3453,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd/certificate method: GET response: proto: HTTP/2.0 @@ -3459,20 +3461,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsNWlZNnJHK3d0Zit0Q2FQVjc1Z013QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RkaE1qVXdNVFF0WkRWak55MDBZMkk0TFdGbVlXVXRNekE0ClpERXpZekUzTVdOa01CNFhEVEkxTURjeU5ERTBNREkxTWxvWERUTTFNRGN5TWpFME1ESTFNbG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU4yRXlOVEF4TkMxa05XTTNMVFJqWWpndFlXWmhaUzB6Ck1EaGtNVE5qTVRjeFkyUXdLakFGQmdNclpYQURJUUJYNUJDdFdaZFBrME1Kd0owNmJCeGd3ckR5MWZEZlVzcDkKdFhZOUtKMk9ScU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFDcTFLc0tXenA5T1YzCm5FMkFoSmRURUMwNktUQUZCZ01yWlhBRFFRQkdKaStqT1FOTVpLYjdiM3ZzdlJEemlrazFUVFRyUnU3S0EwVEUKR1lRdjE2Tk8yVjlHNmRBS1F3a3QxOGxJemVjcStXN2srbkwzVk1JZkF2M2hZUEFPCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "774" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:55:23 GMT + - Thu, 24 Jul 2025 14:12:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3480,10 +3482,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bc2d8cd-92da-4a4c-9c81-9c0839411fba + - fb083680-50df-4f97-adaf-18dbe42e47bd status: 200 OK code: 200 - duration: 174.807958ms + duration: 29.52625ms - id: 71 request: proto: HTTP/1.1 @@ -3500,7 +3502,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3508,20 +3510,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:55:34 GMT + - Thu, 24 Jul 2025 14:12:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3529,10 +3531,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecaced9f-f8da-458c-a7a4-a89196532954 + - 439d78aa-23a7-4c87-890f-226ca82ee8fb status: 200 OK code: 200 - duration: 84.921291ms + duration: 32.2315ms - id: 72 request: proto: HTTP/1.1 @@ -3549,7 +3551,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f method: GET response: proto: HTTP/2.0 @@ -3557,20 +3559,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:55:44 GMT + - Thu, 24 Jul 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3578,10 +3580,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a9c8f06-bded-470e-a3a9-4dcfce7a3f1f + - 05efe7fa-b180-4d51-97bb-f647bc06a67c status: 200 OK code: 200 - duration: 86.112458ms + duration: 36.832792ms - id: 73 request: proto: HTTP/1.1 @@ -3598,7 +3600,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b method: GET response: proto: HTTP/2.0 @@ -3606,20 +3608,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:55:54 GMT + - Thu, 24 Jul 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3627,10 +3629,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25afeecb-d0b2-44c8-83fa-c34015fde4dd + - a68fcade-7b3e-41b5-b8f3-1fd2e76e22d9 status: 200 OK code: 200 - duration: 83.325583ms + duration: 40.510208ms - id: 74 request: proto: HTTP/1.1 @@ -3647,7 +3649,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3655,20 +3657,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:56:04 GMT + - Thu, 24 Jul 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3676,10 +3678,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ce2c30-968a-4a49-b957-cfedef362b70 + - 44b2c7db-4a04-4921-9f25-e04b7b8e1c27 status: 200 OK code: 200 - duration: 98.417375ms + duration: 86.102458ms - id: 75 request: proto: HTTP/1.1 @@ -3696,7 +3698,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9ca9ff7b-832e-4319-b0bd-b78a7be01f2b&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=97a25014-d5c7-4cb8-afae-308d13c171cd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -3704,20 +3706,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 546 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.17.216.2/22","created_at":"2025-07-24T14:06:11.965074Z","id":"c932c0d8-c90b-43b1-991a-55e536e7794c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","mac_address":"02:00:00:1D:58:6A","name":"97a25014-d5c7-4cb8-afae-308d13c171cd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"d03ddb98-3022-481b-9b0f-99dfd72df50d"},"tags":[],"updated_at":"2025-07-24T14:11:01.703044Z","zone":null}],"total_count":1}' headers: Content-Length: - - "774" + - "546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:56:14 GMT + - Thu, 24 Jul 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3725,10 +3727,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1307e128-b89a-4c88-a9f6-c70ddc068519 + - 621d546b-eb68-4138-b450-bc46be08f81a status: 200 OK code: 200 - duration: 100.410584ms + duration: 108.642459ms - id: 76 request: proto: HTTP/1.1 @@ -3745,7 +3747,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd/certificate method: GET response: proto: HTTP/2.0 @@ -3753,20 +3755,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsNWlZNnJHK3d0Zit0Q2FQVjc1Z013QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RkaE1qVXdNVFF0WkRWak55MDBZMkk0TFdGbVlXVXRNekE0ClpERXpZekUzTVdOa01CNFhEVEkxTURjeU5ERTBNREkxTWxvWERUTTFNRGN5TWpFME1ESTFNbG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU4yRXlOVEF4TkMxa05XTTNMVFJqWWpndFlXWmhaUzB6Ck1EaGtNVE5qTVRjeFkyUXdLakFGQmdNclpYQURJUUJYNUJDdFdaZFBrME1Kd0owNmJCeGd3ckR5MWZEZlVzcDkKdFhZOUtKMk9ScU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFDcTFLc0tXenA5T1YzCm5FMkFoSmRURUMwNktUQUZCZ01yWlhBRFFRQkdKaStqT1FOTVpLYjdiM3ZzdlJEemlrazFUVFRyUnU3S0EwVEUKR1lRdjE2Tk8yVjlHNmRBS1F3a3QxOGxJemVjcStXN2srbkwzVk1JZkF2M2hZUEFPCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "774" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:56:24 GMT + - Thu, 24 Jul 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3774,10 +3776,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e3b89cd-e1fb-42e2-a354-3614ce0a23bd + - 8a4c839f-4362-469f-a554-6477b1c11af5 status: 200 OK code: 200 - duration: 92.678417ms + duration: 108.210416ms - id: 77 request: proto: HTTP/1.1 @@ -3794,7 +3796,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b method: GET response: proto: HTTP/2.0 @@ -3802,20 +3804,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:56:34 GMT + - Thu, 24 Jul 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3823,10 +3825,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6452375-f179-420f-9895-6056df6db924 + - 6a0910c0-4632-45cd-80a9-1fb28cc583aa status: 200 OK code: 200 - duration: 73.226667ms + duration: 31.61975ms - id: 78 request: proto: HTTP/1.1 @@ -3843,7 +3845,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f method: GET response: proto: HTTP/2.0 @@ -3851,20 +3853,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:56:44 GMT + - Thu, 24 Jul 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3872,10 +3874,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02a54ae5-c799-4da7-8764-6a6388cd538b + - 8363d831-0c51-4d0a-9046-86d5fc41e936 status: 200 OK code: 200 - duration: 167.831541ms + duration: 100.305625ms - id: 79 request: proto: HTTP/1.1 @@ -3892,7 +3894,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -3900,20 +3902,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:56:54 GMT + - Thu, 24 Jul 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3921,10 +3923,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0047a74d-1f4d-4f45-8814-59915b358e94 + - ad1db4a4-cadc-4e87-9268-3dc3ef776d01 status: 200 OK code: 200 - duration: 120.523584ms + duration: 121.052875ms - id: 80 request: proto: HTTP/1.1 @@ -3941,7 +3943,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9ca9ff7b-832e-4319-b0bd-b78a7be01f2b&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=97a25014-d5c7-4cb8-afae-308d13c171cd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -3949,20 +3951,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 546 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.17.216.2/22","created_at":"2025-07-24T14:06:11.965074Z","id":"c932c0d8-c90b-43b1-991a-55e536e7794c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","mac_address":"02:00:00:1D:58:6A","name":"97a25014-d5c7-4cb8-afae-308d13c171cd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"d03ddb98-3022-481b-9b0f-99dfd72df50d"},"tags":[],"updated_at":"2025-07-24T14:11:01.703044Z","zone":null}],"total_count":1}' headers: Content-Length: - - "774" + - "546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:57:04 GMT + - Thu, 24 Jul 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3970,10 +3972,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6107e23c-1230-4991-8ad2-b24764a79024 + - 49d1846c-aa29-41e6-b5a0-054dcbf64989 status: 200 OK code: 200 - duration: 82.275375ms + duration: 126.28725ms - id: 81 request: proto: HTTP/1.1 @@ -3990,7 +3992,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd/certificate method: GET response: proto: HTTP/2.0 @@ -3998,20 +4000,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsNWlZNnJHK3d0Zit0Q2FQVjc1Z013QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RkaE1qVXdNVFF0WkRWak55MDBZMkk0TFdGbVlXVXRNekE0ClpERXpZekUzTVdOa01CNFhEVEkxTURjeU5ERTBNREkxTWxvWERUTTFNRGN5TWpFME1ESTFNbG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU4yRXlOVEF4TkMxa05XTTNMVFJqWWpndFlXWmhaUzB6Ck1EaGtNVE5qTVRjeFkyUXdLakFGQmdNclpYQURJUUJYNUJDdFdaZFBrME1Kd0owNmJCeGd3ckR5MWZEZlVzcDkKdFhZOUtKMk9ScU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFDcTFLc0tXenA5T1YzCm5FMkFoSmRURUMwNktUQUZCZ01yWlhBRFFRQkdKaStqT1FOTVpLYjdiM3ZzdlJEemlrazFUVFRyUnU3S0EwVEUKR1lRdjE2Tk8yVjlHNmRBS1F3a3QxOGxJemVjcStXN2srbkwzVk1JZkF2M2hZUEFPCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "774" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:57:15 GMT + - Thu, 24 Jul 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4019,10 +4021,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1267d7b9-65b9-4273-b1f3-9712d76e2a6b + - d6dfdea9-3aad-480d-a677-25326c3ef167 status: 200 OK code: 200 - duration: 79.046417ms + duration: 86.176042ms - id: 82 request: proto: HTTP/1.1 @@ -4039,7 +4041,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4047,20 +4049,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:57:25 GMT + - Thu, 24 Jul 2025 14:12:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4068,10 +4070,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4045999-3467-43e9-91d0-26aa688f22cb + - 2beab341-bfd3-4293-82b4-1407eac37cdc status: 200 OK code: 200 - duration: 246.724041ms + duration: 32.27725ms - id: 83 request: proto: HTTP/1.1 @@ -4088,28 +4090,26 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/endpoints/75e40765-ec03-4bb3-bf65-92959fec9470 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: "" headers: - Content-Length: - - "774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:57:35 GMT + - Thu, 24 Jul 2025 14:12:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4117,10 +4117,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed704b92-8938-4ca2-831d-ed211a37c541 - status: 200 OK - code: 200 - duration: 196.853959ms + - 8fa52e31-bbcb-47d7-9241-69fd4fd3c23c + status: 204 No Content + code: 204 + duration: 206.182125ms - id: 84 request: proto: HTTP/1.1 @@ -4137,7 +4137,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4145,20 +4145,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 773 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.9ca9ff7b-832e-4319-b0bd-b78a7be01f2b.internal","id":"75e40765-ec03-4bb3-bf65-92959fec9470","port":27017,"private_network":{"private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "773" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:57:45 GMT + - Thu, 24 Jul 2025 14:12:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4166,10 +4166,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f7ce8aa-8352-41cb-8388-df26ed5ceab2 + - 11ccb9eb-bc02-4a26-afa1-a5876ab77256 status: 200 OK code: 200 - duration: 92.774958ms + duration: 97.068458ms - id: 85 request: proto: HTTP/1.1 @@ -4186,7 +4186,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4194,20 +4194,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 534 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:57:55 GMT + - Thu, 24 Jul 2025 14:12:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4215,10 +4215,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dbf0795-e6c5-48ca-b675-9721a362e7ff + - 55450c83-f7bb-4366-90ca-e5607d92572b status: 200 OK code: 200 - duration: 87.882208ms + duration: 106.865375ms - id: 86 request: proto: HTTP/1.1 @@ -4235,7 +4235,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4243,20 +4243,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 534 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:58:05 GMT + - Thu, 24 Jul 2025 14:13:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4264,10 +4264,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5a858a7-1493-4393-9246-ff3d6bb4d368 + - 886be742-4b9b-4fcf-a918-f170a0b188c2 status: 200 OK code: 200 - duration: 122.313917ms + duration: 125.550084ms - id: 87 request: proto: HTTP/1.1 @@ -4284,7 +4284,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4292,20 +4292,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 534 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:58:15 GMT + - Thu, 24 Jul 2025 14:13:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4313,10 +4313,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 351b307c-3026-4afe-b61e-47b7f8806e9e + - 3a3f0f5c-1bb3-4b46-ad2a-2deecfcc0ba9 status: 200 OK code: 200 - duration: 93.303667ms + duration: 78.831875ms - id: 88 request: proto: HTTP/1.1 @@ -4333,7 +4333,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4341,20 +4341,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 534 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:58:25 GMT + - Thu, 24 Jul 2025 14:13:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4362,10 +4362,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 798c382f-2e19-4952-a31e-190f0cb9562a + - 3c65936e-d8da-49b9-aca2-719db5898a29 status: 200 OK code: 200 - duration: 85.52775ms + duration: 85.85875ms - id: 89 request: proto: HTTP/1.1 @@ -4382,7 +4382,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4390,20 +4390,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 534 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:58:36 GMT + - Thu, 24 Jul 2025 14:13:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4411,10 +4411,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bf2d3d6-f29c-4e39-96b5-52b613b9c70c + - cf9393c4-d36c-404e-9bc7-c87c292dce6b status: 200 OK code: 200 - duration: 90.60325ms + duration: 297.419708ms - id: 90 request: proto: HTTP/1.1 @@ -4431,7 +4431,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4439,20 +4439,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 534 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:58:46 GMT + - Thu, 24 Jul 2025 14:13:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4460,10 +4460,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a4de5f7-e84c-4ae2-bd1a-0ae3ce712945 + - b4531260-9cd3-4f7d-afa8-937e3775cf41 status: 200 OK code: 200 - duration: 83.567542ms + duration: 110.675166ms - id: 91 request: proto: HTTP/1.1 @@ -4480,7 +4480,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4488,20 +4488,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 534 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:58:56 GMT + - Thu, 24 Jul 2025 14:13:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4509,10 +4509,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a839789-2e9d-4e48-ae1d-32f2fe5dee4b + - 148b5a19-1277-47ed-822f-69499354993f status: 200 OK code: 200 - duration: 226.205125ms + duration: 87.297625ms - id: 92 request: proto: HTTP/1.1 @@ -4529,7 +4529,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4537,20 +4537,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 528 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:59:06 GMT + - Thu, 24 Jul 2025 14:14:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4558,48 +4558,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcba0660-d9ca-41b5-abd0-6456daf75f7b + - 43fa664b-8504-4829-848a-94b4fbb5d22f status: 200 OK code: 200 - duration: 78.826667ms + duration: 119.866375ms - id: 93 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":"97a25014-d5c7-4cb8-afae-308d13c171cd","endpoint":{"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}}' 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/endpoints + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 239 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}' headers: Content-Length: - - "774" + - "239" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:59:16 GMT + - Thu, 24 Jul 2025 14:14:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4607,10 +4609,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa25239c-c150-4a80-a921-5c12cc641d74 + - 185cab10-4e85-4e81-8303-6fbe5f85b369 status: 200 OK code: 200 - duration: 80.029833ms + duration: 244.673292ms - id: 94 request: proto: HTTP/1.1 @@ -4627,7 +4629,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4635,20 +4637,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 773 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "773" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:59:26 GMT + - Thu, 24 Jul 2025 14:14:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4656,10 +4658,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 312c2cf6-9f52-4caa-92ff-15656504e88b + - 1204ca53-100d-4a7f-bc97-df461d7983e0 status: 200 OK code: 200 - duration: 93.175334ms + duration: 100.354833ms - id: 95 request: proto: HTTP/1.1 @@ -4676,7 +4678,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4684,20 +4686,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 773 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "773" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:59:36 GMT + - Thu, 24 Jul 2025 14:14:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4705,10 +4707,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 265c960a-a5b8-4edb-bce6-a79b02574bfa + - 3c8fedea-7a5b-4b51-be96-3472a990e9f5 status: 200 OK code: 200 - duration: 142.422041ms + duration: 121.782084ms - id: 96 request: proto: HTTP/1.1 @@ -4725,7 +4727,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4733,20 +4735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 773 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "773" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:59:46 GMT + - Thu, 24 Jul 2025 14:14:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4754,10 +4756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92f8ac09-eb04-4172-8ca2-5a7a1c5ddeb1 + - 2b915052-7221-4b08-9f62-fcba9a89abf0 status: 200 OK code: 200 - duration: 177.966834ms + duration: 179.562ms - id: 97 request: proto: HTTP/1.1 @@ -4774,7 +4776,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4782,20 +4784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 12:59:57 GMT + - Thu, 24 Jul 2025 14:14:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4803,10 +4805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a4001ca-e7d2-4f34-a2c8-88098a25efd0 + - fb0adcb5-f869-472b-87bf-e5a225a11fd5 status: 200 OK code: 200 - duration: 92.161291ms + duration: 93.187041ms - id: 98 request: proto: HTTP/1.1 @@ -4823,7 +4825,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4831,20 +4833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:00:07 GMT + - Thu, 24 Jul 2025 14:14:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4852,10 +4854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f0a386c-4758-4779-a06b-f85795fa3646 + - d5136923-bf8d-4f2d-b040-df0460e039e3 status: 200 OK code: 200 - duration: 179.284ms + duration: 37.953167ms - id: 99 request: proto: HTTP/1.1 @@ -4872,7 +4874,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5470f6d3-12c2-4bdf-81bb-be8236178e0f&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=97a25014-d5c7-4cb8-afae-308d13c171cd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -4880,20 +4882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.17.180.2/22","created_at":"2025-07-24T14:14:18.928718Z","id":"a7285170-1b5d-4b53-a912-9a02193912c4","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","mac_address":null,"name":"97a25014-d5c7-4cb8-afae-308d13c171cd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d"},"tags":[],"updated_at":"2025-07-24T14:14:18.928718Z","zone":null}],"total_count":1}' headers: Content-Length: - - "774" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:00:17 GMT + - Thu, 24 Jul 2025 14:14:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4901,10 +4903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 660372e8-98d0-46d2-a1a5-f3fd6a934f83 + - 063cc4ef-d295-498a-8a1e-ae1780f343cd status: 200 OK code: 200 - duration: 170.167875ms + duration: 49.996667ms - id: 100 request: proto: HTTP/1.1 @@ -4921,7 +4923,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd/certificate method: GET response: proto: HTTP/2.0 @@ -4929,20 +4931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsNWlZNnJHK3d0Zit0Q2FQVjc1Z013QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RkaE1qVXdNVFF0WkRWak55MDBZMkk0TFdGbVlXVXRNekE0ClpERXpZekUzTVdOa01CNFhEVEkxTURjeU5ERTBNREkxTWxvWERUTTFNRGN5TWpFME1ESTFNbG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU4yRXlOVEF4TkMxa05XTTNMVFJqWWpndFlXWmhaUzB6Ck1EaGtNVE5qTVRjeFkyUXdLakFGQmdNclpYQURJUUJYNUJDdFdaZFBrME1Kd0owNmJCeGd3ckR5MWZEZlVzcDkKdFhZOUtKMk9ScU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFDcTFLc0tXenA5T1YzCm5FMkFoSmRURUMwNktUQUZCZ01yWlhBRFFRQkdKaStqT1FOTVpLYjdiM3ZzdlJEemlrazFUVFRyUnU3S0EwVEUKR1lRdjE2Tk8yVjlHNmRBS1F3a3QxOGxJemVjcStXN2srbkwzVk1JZkF2M2hZUEFPCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "774" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:00:27 GMT + - Thu, 24 Jul 2025 14:14:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4950,10 +4952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73b9be3a-434b-433b-a0e0-4cd6b6c1e761 + - 9cd0d8b8-53e0-4506-85df-3168691a8346 status: 200 OK code: 200 - duration: 88.245167ms + duration: 83.278667ms - id: 101 request: proto: HTTP/1.1 @@ -4970,7 +4972,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -4978,20 +4980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "774" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:00:37 GMT + - Thu, 24 Jul 2025 14:14:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4999,10 +5001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cfad3f7-c0e7-4208-8578-21f03f5fefba + - 6bfee81b-883f-4ea0-b9e7-ded49e269676 status: 200 OK code: 200 - duration: 120.227334ms + duration: 35.156125ms - id: 102 request: proto: HTTP/1.1 @@ -5019,7 +5021,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f method: GET response: proto: HTTP/2.0 @@ -5027,20 +5029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:00:47 GMT + - Thu, 24 Jul 2025 14:14:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5048,10 +5050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4f090c0-6216-48f0-9344-4db8c3e33558 + - 3509064e-2351-4fa1-9dca-f0c4d7622848 status: 200 OK code: 200 - duration: 92.233459ms + duration: 36.689042ms - id: 103 request: proto: HTTP/1.1 @@ -5068,7 +5070,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b method: GET response: proto: HTTP/2.0 @@ -5076,20 +5078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 774 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "774" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:00:57 GMT + - Thu, 24 Jul 2025 14:14:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5097,10 +5099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa84aa67-e044-4344-a66b-0152bab3531e + - 4791ae88-e268-4836-8b02-0a72678e7456 status: 200 OK code: 200 - duration: 80.142792ms + duration: 114.277ms - id: 104 request: proto: HTTP/1.1 @@ -5117,7 +5119,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -5127,7 +5129,7 @@ interactions: trailer: {} content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "767" @@ -5136,9 +5138,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:07 GMT + - Thu, 24 Jul 2025 14:14:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5146,10 +5148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67d4aa91-cb17-4246-ad73-0580679dd140 + - fb25597a-f9e6-4ae8-86d0-2013b111a62e status: 200 OK code: 200 - duration: 190.888958ms + duration: 91.316917ms - id: 105 request: proto: HTTP/1.1 @@ -5166,7 +5168,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5470f6d3-12c2-4bdf-81bb-be8236178e0f&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=97a25014-d5c7-4cb8-afae-308d13c171cd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -5174,20 +5176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 767 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.17.180.2/22","created_at":"2025-07-24T14:14:18.928718Z","id":"a7285170-1b5d-4b53-a912-9a02193912c4","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","mac_address":null,"name":"97a25014-d5c7-4cb8-afae-308d13c171cd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d"},"tags":[],"updated_at":"2025-07-24T14:14:18.928718Z","zone":null}],"total_count":1}' headers: Content-Length: - - "767" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:08 GMT + - Thu, 24 Jul 2025 14:14:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5195,10 +5197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5478b0e0-dac7-42a7-8b7e-628ce181b614 + - 4a753396-bc05-4d85-91ec-ee9fc5e89fc9 status: 200 OK code: 200 - duration: 177.044ms + duration: 53.968708ms - id: 106 request: proto: HTTP/1.1 @@ -5215,7 +5217,7 @@ interactions: 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/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f4c962c7-58c1-46da-96c7-5f5c61e59a26&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=18b71a3e-fcc4-44f6-b7b9-ab7e4a694499&resource_type=mgdb_instance + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd/certificate method: GET response: proto: HTTP/2.0 @@ -5223,20 +5225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 546 + content_length: 1085 uncompressed: false - body: '{"ips":[{"address":"172.17.124.2/22","created_at":"2025-07-21T12:50:27.342044Z","id":"1d181543-2a30-4503-a699-ccc6c293395c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","mac_address":"02:00:00:1B:07:CA","name":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"19c103df-30ce-4f28-89f6-345179948836"},"tags":[],"updated_at":"2025-07-21T12:59:29.673019Z","zone":null}],"total_count":1}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsNWlZNnJHK3d0Zit0Q2FQVjc1Z013QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RkaE1qVXdNVFF0WkRWak55MDBZMkk0TFdGbVlXVXRNekE0ClpERXpZekUzTVdOa01CNFhEVEkxTURjeU5ERTBNREkxTWxvWERUTTFNRGN5TWpFME1ESTFNbG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU4yRXlOVEF4TkMxa05XTTNMVFJqWWpndFlXWmhaUzB6Ck1EaGtNVE5qTVRjeFkyUXdLakFGQmdNclpYQURJUUJYNUJDdFdaZFBrME1Kd0owNmJCeGd3ckR5MWZEZlVzcDkKdFhZOUtKMk9ScU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFDcTFLc0tXenA5T1YzCm5FMkFoSmRURUMwNktUQUZCZ01yWlhBRFFRQkdKaStqT1FOTVpLYjdiM3ZzdlJEemlrazFUVFRyUnU3S0EwVEUKR1lRdjE2Tk8yVjlHNmRBS1F3a3QxOGxJemVjcStXN2srbkwzVk1JZkF2M2hZUEFPCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "546" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:08 GMT + - Thu, 24 Jul 2025 14:14:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5244,10 +5246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b33de9b9-0a3b-4fba-9ba6-92f92247d828 + - fd69657c-f840-4baa-b538-fe2b5f6f2be0 status: 200 OK code: 200 - duration: 176.020167ms + duration: 83.773875ms - id: 107 request: proto: HTTP/1.1 @@ -5264,7 +5266,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f method: GET response: proto: HTTP/2.0 @@ -5272,20 +5274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 767 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "767" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:08 GMT + - Thu, 24 Jul 2025 14:14:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5293,10 +5295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d17946a-6246-47ef-a14c-9aa8bb63aae9 + - c695e083-6398-454d-9286-a79d59106baa status: 200 OK code: 200 - duration: 27.980541ms + duration: 38.439667ms - id: 108 request: proto: HTTP/1.1 @@ -5313,7 +5315,7 @@ interactions: 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/f4c962c7-58c1-46da-96c7-5f5c61e59a26 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b method: GET response: proto: HTTP/2.0 @@ -5323,7 +5325,7 @@ interactions: trailer: {} content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:21.977894Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","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-07-21T12:44:21.977894Z","id":"19c103df-30ce-4f28-89f6-345179948836","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.124.0/22","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:44:21.977894Z","id":"98a7bf38-cabd-4620-b00c-51ea7b26e095","private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:a40a::/64","updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:44:21.977894Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - "1089" @@ -5332,9 +5334,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:09 GMT + - Thu, 24 Jul 2025 14:14:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5342,10 +5344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30d3e970-65fd-4994-89e8-314670eda57a + - 10783fb3-2064-4c3e-8457-134fb1006241 status: 200 OK code: 200 - duration: 123.0255ms + duration: 44.012541ms - id: 109 request: proto: HTTP/1.1 @@ -5362,7 +5364,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -5372,7 +5374,7 @@ interactions: trailer: {} content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "767" @@ -5381,9 +5383,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:09 GMT + - Thu, 24 Jul 2025 14:14:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5391,10 +5393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 447360d5-8c31-4eb2-ad38-2d36e907d1f5 + - c64a36de-4f57-42dc-a4fc-c7b62b8bf6a8 status: 200 OK code: 200 - duration: 214.19375ms + duration: 93.629417ms - id: 110 request: proto: HTTP/1.1 @@ -5411,7 +5413,7 @@ interactions: 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/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f4c962c7-58c1-46da-96c7-5f5c61e59a26&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=18b71a3e-fcc4-44f6-b7b9-ab7e4a694499&resource_type=mgdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5470f6d3-12c2-4bdf-81bb-be8236178e0f&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=97a25014-d5c7-4cb8-afae-308d13c171cd&resource_type=mgdb_instance method: GET response: proto: HTTP/2.0 @@ -5419,20 +5421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 546 + content_length: 531 uncompressed: false - body: '{"ips":[{"address":"172.17.124.2/22","created_at":"2025-07-21T12:50:27.342044Z","id":"1d181543-2a30-4503-a699-ccc6c293395c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","mac_address":"02:00:00:1B:07:CA","name":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"19c103df-30ce-4f28-89f6-345179948836"},"tags":[],"updated_at":"2025-07-21T12:59:29.673019Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.17.180.2/22","created_at":"2025-07-24T14:14:18.928718Z","id":"a7285170-1b5d-4b53-a912-9a02193912c4","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","mac_address":null,"name":"97a25014-d5c7-4cb8-afae-308d13c171cd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d"},"tags":[],"updated_at":"2025-07-24T14:14:18.928718Z","zone":null}],"total_count":1}' headers: Content-Length: - - "546" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:09 GMT + - Thu, 24 Jul 2025 14:14:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5440,10 +5442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b94bf9b7-f06d-408a-8827-124ffa58cdbd + - 80ec75b5-42e6-48f8-b3fe-a9691acb6f4e status: 200 OK code: 200 - duration: 119.656333ms + duration: 51.142292ms - id: 111 request: proto: HTTP/1.1 @@ -5460,7 +5462,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd/certificate method: GET response: proto: HTTP/2.0 @@ -5468,20 +5470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 767 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsNWlZNnJHK3d0Zit0Q2FQVjc1Z013QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RkaE1qVXdNVFF0WkRWak55MDBZMkk0TFdGbVlXVXRNekE0ClpERXpZekUzTVdOa01CNFhEVEkxTURjeU5ERTBNREkxTWxvWERUTTFNRGN5TWpFME1ESTFNbG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU4yRXlOVEF4TkMxa05XTTNMVFJqWWpndFlXWmhaUzB6Ck1EaGtNVE5qTVRjeFkyUXdLakFGQmdNclpYQURJUUJYNUJDdFdaZFBrME1Kd0owNmJCeGd3ckR5MWZEZlVzcDkKdFhZOUtKMk9ScU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFDcTFLc0tXenA5T1YzCm5FMkFoSmRURUMwNktUQUZCZ01yWlhBRFFRQkdKaStqT1FOTVpLYjdiM3ZzdlJEemlrazFUVFRyUnU3S0EwVEUKR1lRdjE2Tk8yVjlHNmRBS1F3a3QxOGxJemVjcStXN2srbkwzVk1JZkF2M2hZUEFPCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "767" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:10 GMT + - Thu, 24 Jul 2025 14:14:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5489,10 +5491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ee3d5c-e029-4171-86ee-220a75922279 + - dc04b438-b171-41e8-b90e-ab1db004e69b status: 200 OK code: 200 - duration: 32.748333ms + duration: 28.7235ms - id: 112 request: proto: HTTP/1.1 @@ -5509,28 +5511,28 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: DELETE + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 767 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "653" + - "767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:10 GMT + - Thu, 24 Jul 2025 14:14:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5538,10 +5540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ea7e618-954d-41f9-b591-c3dabbe1740d + - 1e5c882d-8dcf-405e-acf3-3162628d591c status: 200 OK code: 200 - duration: 146.919541ms + duration: 104.102459ms - id: 113 request: proto: HTTP/1.1 @@ -5558,28 +5560,26 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/endpoints/947149b3-09b3-4f01-90af-965de67ba9c4 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: "" headers: - Content-Length: - - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:10 GMT + - Thu, 24 Jul 2025 14:14:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5587,10 +5587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cca6db16-cd70-4ed0-adb1-dbdb59687870 - status: 200 OK - code: 200 - duration: 26.602917ms + - d69f5544-0173-40e1-8ded-20adfc1fb663 + status: 204 No Content + code: 204 + duration: 602.867042ms - id: 114 request: proto: HTTP/1.1 @@ -5607,7 +5607,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -5615,20 +5615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 773 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[{"dns_record":"97a25014-d5c7-4cb8-afae-308d13c171cd.5470f6d3-12c2-4bdf-81bb-be8236178e0f.internal","id":"947149b3-09b3-4f01-90af-965de67ba9c4","port":27017,"private_network":{"private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f"}}],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "773" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:20 GMT + - Thu, 24 Jul 2025 14:14:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5636,10 +5636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ae7fcd7-db89-4b9e-9f6d-4b23a620220c + - eab56865-66a0-4552-9164-48d1c4bb0297 status: 200 OK code: 200 - duration: 32.6945ms + duration: 25.200875ms - id: 115 request: proto: HTTP/1.1 @@ -5656,7 +5656,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -5664,20 +5664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 528 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:30 GMT + - Thu, 24 Jul 2025 14:14:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5685,10 +5685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bc811de-1b6b-424a-a3f2-3a918e10b457 + - f09dfc1b-1cc2-4366-94c4-3ea885121f38 status: 200 OK code: 200 - duration: 95.429667ms + duration: 95.499125ms - id: 116 request: proto: HTTP/1.1 @@ -5705,7 +5705,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -5713,20 +5713,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 528 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:40 GMT + - Thu, 24 Jul 2025 14:14:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5734,10 +5734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4374345-e6e6-4aa9-8fab-243cb1ac8822 + - 716bb828-73db-4cca-b602-a67caf05fcf5 status: 200 OK code: 200 - duration: 85.054208ms + duration: 106.952542ms - id: 117 request: proto: HTTP/1.1 @@ -5754,7 +5754,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -5762,20 +5762,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 528 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:01:51 GMT + - Thu, 24 Jul 2025 14:14:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5783,10 +5783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee9747d3-f35e-4a7c-98b2-80bd69f5f075 + - f3e0bc35-00ec-4795-be6b-2332c60fda37 status: 200 OK code: 200 - duration: 83.16725ms + duration: 34.592583ms - id: 118 request: proto: HTTP/1.1 @@ -5803,7 +5803,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd/certificate method: GET response: proto: HTTP/2.0 @@ -5811,20 +5811,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsNWlZNnJHK3d0Zit0Q2FQVjc1Z013QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RkaE1qVXdNVFF0WkRWak55MDBZMkk0TFdGbVlXVXRNekE0ClpERXpZekUzTVdOa01CNFhEVEkxTURjeU5ERTBNREkxTWxvWERUTTFNRGN5TWpFME1ESTFNbG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU4yRXlOVEF4TkMxa05XTTNMVFJqWWpndFlXWmhaUzB6Ck1EaGtNVE5qTVRjeFkyUXdLakFGQmdNclpYQURJUUJYNUJDdFdaZFBrME1Kd0owNmJCeGd3ckR5MWZEZlVzcDkKdFhZOUtKMk9ScU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFDcTFLc0tXenA5T1YzCm5FMkFoSmRURUMwNktUQUZCZ01yWlhBRFFRQkdKaStqT1FOTVpLYjdiM3ZzdlJEemlrazFUVFRyUnU3S0EwVEUKR1lRdjE2Tk8yVjlHNmRBS1F3a3QxOGxJemVjcStXN2srbkwzVk1JZkF2M2hZUEFPCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "770" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:02:01 GMT + - Thu, 24 Jul 2025 14:14:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5832,10 +5832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e5f1f8f-fbf4-47cc-a813-170873febb9e + - e5f1e983-69b5-4337-b185-c3002b64ac14 status: 200 OK code: 200 - duration: 222.139375ms + duration: 26.578958ms - id: 119 request: proto: HTTP/1.1 @@ -5852,7 +5852,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -5860,20 +5860,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 528 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:02:11 GMT + - Thu, 24 Jul 2025 14:14:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5881,10 +5881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53857750-091a-49c1-baf9-674128a4c2a2 + - 946074ef-3afe-473a-a586-00b334e6d7f1 status: 200 OK code: 200 - duration: 80.141ms + duration: 37.386458ms - id: 120 request: proto: HTTP/1.1 @@ -5901,7 +5901,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f method: GET response: proto: HTTP/2.0 @@ -5909,20 +5909,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 1093 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.929361Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","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-07-24T14:02:48.929361Z","id":"cf0627fd-3cb0-4f97-b52f-f2ebae5b8f9d","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.929361Z","id":"3f4c8cdf-40b3-4dc2-9bef-12586aeedf02","private_network_id":"5470f6d3-12c2-4bdf-81bb-be8236178e0f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dccc::/64","updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.929361Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "770" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:02:21 GMT + - Thu, 24 Jul 2025 14:14:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5930,10 +5930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c12156c0-1fe2-4b88-9598-7db0f7e0982a + - 9bfed6f3-0617-4e74-8f22-51b095c6c131 status: 200 OK code: 200 - duration: 81.1475ms + duration: 39.650959ms - id: 121 request: proto: HTTP/1.1 @@ -5950,7 +5950,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b method: GET response: proto: HTTP/2.0 @@ -5958,20 +5958,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:48.858366Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","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-07-24T14:02:48.858366Z","id":"d03ddb98-3022-481b-9b0f-99dfd72df50d","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.216.0/22","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:02:48.858366Z","id":"f8488f5a-5e51-4534-9e9d-1669c4159519","private_network_id":"9ca9ff7b-832e-4319-b0bd-b78a7be01f2b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:1e95::/64","updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:02:48.858366Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "770" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:02:31 GMT + - Thu, 24 Jul 2025 14:14:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5979,10 +5979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c188523-b17e-4f77-8322-253621341c72 + - 5a397d2d-e485-47f7-bddc-13a84e3055b5 status: 200 OK code: 200 - duration: 150.853166ms + duration: 40.58925ms - id: 122 request: proto: HTTP/1.1 @@ -5999,7 +5999,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6007,20 +6007,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 528 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:02:41 GMT + - Thu, 24 Jul 2025 14:14:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6028,10 +6028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1faaeba9-4c03-4bbb-8727-1359e6763321 + - a9b46a42-0414-45fa-8206-4fda43692203 status: 200 OK code: 200 - duration: 215.05525ms + duration: 83.472042ms - id: 123 request: proto: HTTP/1.1 @@ -6048,7 +6048,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd/certificate method: GET response: proto: HTTP/2.0 @@ -6056,20 +6056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsNWlZNnJHK3d0Zit0Q2FQVjc1Z013QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnT1RkaE1qVXdNVFF0WkRWak55MDBZMkk0TFdGbVlXVXRNekE0ClpERXpZekUzTVdOa01CNFhEVEkxTURjeU5ERTBNREkxTWxvWERUTTFNRGN5TWpFME1ESTFNbG93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBNU4yRXlOVEF4TkMxa05XTTNMVFJqWWpndFlXWmhaUzB6Ck1EaGtNVE5qTVRjeFkyUXdLakFGQmdNclpYQURJUUJYNUJDdFdaZFBrME1Kd0owNmJCeGd3ckR5MWZEZlVzcDkKdFhZOUtKMk9ScU5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFDcTFLc0tXenA5T1YzCm5FMkFoSmRURUMwNktUQUZCZ01yWlhBRFFRQkdKaStqT1FOTVpLYjdiM3ZzdlJEemlrazFUVFRyUnU3S0EwVEUKR1lRdjE2Tk8yVjlHNmRBS1F3a3QxOGxJemVjcStXN2srbkwzVk1JZkF2M2hZUEFPCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "770" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:02:51 GMT + - Thu, 24 Jul 2025 14:14:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6077,10 +6077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b13a48e2-a190-4908-bb46-a89d0da5a2dc + - 51c50f9e-f2ea-48cc-806e-d0c60df0a6ef status: 200 OK code: 200 - duration: 104.981125ms + duration: 88.3945ms - id: 124 request: proto: HTTP/1.1 @@ -6097,7 +6097,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6105,20 +6105,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 528 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:03:02 GMT + - Thu, 24 Jul 2025 14:14:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6126,10 +6126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cfd31ca-ee8a-4a5a-ad58-9855c61d88db + - 48abd760-25db-49f4-a43a-27703fbbb903 status: 200 OK code: 200 - duration: 91.37675ms + duration: 38.659042ms - id: 125 request: proto: HTTP/1.1 @@ -6146,28 +6146,28 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 414 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:03:12 GMT + - Thu, 24 Jul 2025 14:14:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6175,10 +6175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d111f262-f922-47f8-8cff-488427d7dead + - 795b7bae-02e5-441d-9b72-52679008ffff status: 200 OK code: 200 - duration: 110.75525ms + duration: 163.233834ms - id: 126 request: proto: HTTP/1.1 @@ -6195,7 +6195,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6203,20 +6203,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:03:22 GMT + - Thu, 24 Jul 2025 14:14:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6224,10 +6224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d29aeec0-fd48-48f4-8b58-77e94178476c + - 42c699c7-c3da-4092-8507-6ab056fbfe5e status: 200 OK code: 200 - duration: 111.422583ms + duration: 99.125167ms - id: 127 request: proto: HTTP/1.1 @@ -6244,28 +6244,26 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9ca9ff7b-832e-4319-b0bd-b78a7be01f2b + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: "" headers: - Content-Length: - - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:03:32 GMT + - Thu, 24 Jul 2025 14:14:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6273,10 +6271,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b3fa626-4cfb-4bcd-9c89-916c401cd8e4 - status: 200 OK - code: 200 - duration: 94.04075ms + - 6d2bdb24-2b20-431f-a531-df88ea0643f3 + status: 204 No Content + code: 204 + duration: 3.665000291s - id: 128 request: proto: HTTP/1.1 @@ -6293,28 +6291,26 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5470f6d3-12c2-4bdf-81bb-be8236178e0f + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: "" headers: - Content-Length: - - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:03:42 GMT + - Thu, 24 Jul 2025 14:14:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6322,10 +6318,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6a641f2-3d4d-4958-85a7-ea20142ffef4 - status: 200 OK - code: 200 - duration: 85.510667ms + - 033dd855-be0b-45c0-9190-0aa386592333 + status: 204 No Content + code: 204 + duration: 3.824078792s - id: 129 request: proto: HTTP/1.1 @@ -6342,7 +6338,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6350,20 +6346,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:03:52 GMT + - Thu, 24 Jul 2025 14:15:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6371,10 +6367,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64435498-c0bb-4886-8cd9-50494023b15b + - 3a79bd57-1688-4a71-95c8-5dff9931fdf6 status: 200 OK code: 200 - duration: 95.931ms + duration: 75.677959ms - id: 130 request: proto: HTTP/1.1 @@ -6391,7 +6387,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6399,20 +6395,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:04:02 GMT + - Thu, 24 Jul 2025 14:15:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6420,10 +6416,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa9bd537-246f-4c08-a7a3-013588d5473c + - a85e5763-7e1a-4519-83f9-73f8fd26a3e8 status: 200 OK code: 200 - duration: 171.423583ms + duration: 81.435542ms - id: 131 request: proto: HTTP/1.1 @@ -6440,7 +6436,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6448,20 +6444,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:04:12 GMT + - Thu, 24 Jul 2025 14:15:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6469,10 +6465,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfbccdd8-9a32-47d5-b415-90477a4445bf + - cabb0a98-9cda-4fb9-9b6b-f3c8176f5a77 status: 200 OK code: 200 - duration: 96.11875ms + duration: 272.072084ms - id: 132 request: proto: HTTP/1.1 @@ -6489,7 +6485,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6497,20 +6493,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:04:22 GMT + - Thu, 24 Jul 2025 14:15:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6518,10 +6514,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a27874e6-c3b5-4ab8-803c-ea8dc4820510 + - a1c4ccfd-f72c-4171-adcd-c59730058bcc status: 200 OK code: 200 - duration: 119.581791ms + duration: 81.242833ms - id: 133 request: proto: HTTP/1.1 @@ -6538,7 +6534,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6546,20 +6542,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:02:52.228252Z","endpoints":[],"id":"97a25014-d5c7-4cb8-afae-308d13c171cd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:02:52.787633Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "770" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:04:32 GMT + - Thu, 24 Jul 2025 14:15:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6567,10 +6563,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c49ac907-60bd-4892-8cb0-8ea4470edeb4 + - c3c12730-e422-48db-99db-4b52384e4ba3 status: 200 OK code: 200 - duration: 79.955875ms + duration: 93.304833ms - id: 134 request: proto: HTTP/1.1 @@ -6587,7 +6583,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -6595,20 +6591,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 129 uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"97a25014-d5c7-4cb8-afae-308d13c171cd","type":"not_found"}' headers: Content-Length: - - "770" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:04:43 GMT + - Thu, 24 Jul 2025 14:15:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6616,10 +6612,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 799d1574-e743-4c58-8bd8-7ee241e2da7b - status: 200 OK - code: 200 - duration: 256.077291ms + - eafa5e50-4c61-456f-b8a6-6a4c79250f23 + status: 404 Not Found + code: 404 + duration: 31.4205ms - id: 135 request: proto: HTTP/1.1 @@ -6636,1328 +6632,7 @@ interactions: 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/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cb56ed0b-0f96-4fbf-b8ff-9675bedc7125 - status: 200 OK - code: 200 - duration: 138.256583ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 330ebe85-29c6-4f32-9bbe-8b0ef72346e5 - status: 200 OK - code: 200 - duration: 84.223791ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 11c820a2-f370-4d5d-82f0-8f633431d722 - status: 200 OK - code: 200 - duration: 173.830708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a77c5c7-c1dd-42cd-af8d-a9778ca860d1 - status: 200 OK - code: 200 - duration: 93.637708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 46bebd29-16a3-45f6-98a9-f35f2b9b5c05 - status: 200 OK - code: 200 - duration: 107.203ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 34efdcbe-c992-4373-9301-640144eb81aa - status: 200 OK - code: 200 - duration: 98.593333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 417e8cbb-14c9-45cd-af4d-77d628992946 - status: 200 OK - code: 200 - duration: 169.272834ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2333d933-dec8-4989-af99-b1b292cf31af - status: 200 OK - code: 200 - duration: 97.226042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 84da1384-b44f-4f51-b076-47b67654c04c - status: 200 OK - code: 200 - duration: 97.421625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7372ff4b-cf93-4abb-83d6-c3952e93f91a - status: 200 OK - code: 200 - duration: 92.988208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 143240f5-55e9-4e09-88d8-668fd0882cc6 - status: 200 OK - code: 200 - duration: 86.140959ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bdfb1a73-60b5-4643-ab71-7847a014e7e0 - status: 200 OK - code: 200 - duration: 218.682125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5857b437-18b6-436d-a9e5-8aaed61539e1 - status: 200 OK - code: 200 - duration: 89.341417ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1194573a-fef1-4559-a74c-53dddd71cff4 - status: 200 OK - code: 200 - duration: 72.312167ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f30b3597-5953-40ba-8d95-f19f474bc826 - status: 200 OK - code: 200 - duration: 238.321167ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c07dfb4c-80e7-48f0-8415-97f799e8fdcb - status: 200 OK - code: 200 - duration: 102.669958ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e2f2c4e-410a-459f-a6c5-4480458120c8 - status: 200 OK - code: 200 - duration: 95.384167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ea685b7-5198-4e1f-8bb3-8ea4a1503022 - status: 200 OK - code: 200 - duration: 113.831375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9576e486-a6d2-4324-be01-feae46f8e31e - status: 200 OK - code: 200 - duration: 192.889792ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1d93c6b-e554-423f-bd11-d8d9e6eb777a - status: 200 OK - code: 200 - duration: 142.526291ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fbfc6254-5e36-429a-8cb7-343092ef4421 - status: 200 OK - code: 200 - duration: 82.398875ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14bf692f-1ff9-47c8-bb48-c2485e0b7f64 - status: 200 OK - code: 200 - duration: 94.469708ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 607f7bc6-0313-404c-b338-f501ee6c614b - status: 200 OK - code: 200 - duration: 81.711834ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 357c2c72-9628-48bd-a6be-afdc23a9a4b4 - status: 200 OK - code: 200 - duration: 96.855667ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 770 - uncompressed: false - body: '{"created_at":"2025-07-21T12:44:25.295214Z","endpoints":[{"dns_record":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499.f4c962c7-58c1-46da-96c7-5f5c61e59a26.internal","id":"d183a30e-c249-4a7f-94c6-31fdcf0c4124","port":27017,"private_network":{"private_network_id":"f4c962c7-58c1-46da-96c7-5f5c61e59a26"}}],"id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:44:25.797107Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fc1b05fb-39c5-4fe4-bac7-94d9933ad88a - status: 200 OK - code: 200 - duration: 81.789167ms - - id: 160 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 54f2def5-9488-4a24-9389-47aff3246da6 - status: 404 Not Found - code: 404 - duration: 34.769917ms - - id: 161 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f4c962c7-58c1-46da-96c7-5f5c61e59a26 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 610cab0f-ce86-484c-a895-c0f8edd3dcff - status: 204 No Content - code: 204 - duration: 2.136810125s - - id: 162 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/18b71a3e-fcc4-44f6-b7b9-ab7e4a694499 + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/97a25014-d5c7-4cb8-afae-308d13c171cd method: GET response: proto: HTTP/2.0 @@ -7967,7 +6642,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"18b71a3e-fcc4-44f6-b7b9-ab7e4a694499","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"97a25014-d5c7-4cb8-afae-308d13c171cd","type":"not_found"}' headers: Content-Length: - "129" @@ -7976,9 +6651,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 13:09:08 GMT + - Thu, 24 Jul 2025 14:15:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7986,7 +6661,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d1d513b-c5cd-4034-9ca4-8d3493d4514a + - 41ef43bc-2df2-4977-a060-a625a5f7fb64 status: 404 Not Found code: 404 - duration: 31.719541ms + duration: 27.531125ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-private-and-public-network.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-private-and-public-network.cassette.yaml new file mode 100644 index 000000000..25238ffde --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-instance-private-and-public-network.cassette.yaml @@ -0,0 +1,5150 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 148 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1089 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:03.963085Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","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-07-24T14:03:03.963085Z","id":"806f1ddd-0b26-4d27-b8b4-8f4e3a20f4bd","private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.220.0/22","updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:03:03.963085Z","id":"433eec67-039e-46cd-ae11-a014e4c0f20c","private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5836::/64","updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + headers: + Content-Length: + - "1089" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2597342d-14ba-4767-9f36-c4206aac7535 + status: 200 OK + code: 200 + duration: 912.261542ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7e3da6f1-2dac-4009-b8f6-15b6ea368901 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1089 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:03.963085Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","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-07-24T14:03:03.963085Z","id":"806f1ddd-0b26-4d27-b8b4-8f4e3a20f4bd","private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.220.0/22","updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:03:03.963085Z","id":"433eec67-039e-46cd-ae11-a014e4c0f20c","private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5836::/64","updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + headers: + Content-Length: + - "1089" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e52057dc-b2b8-4c3f-a35a-79732ac8411b + status: 200 OK + code: 200 + duration: 31.03625ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 401 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-public-network","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"public_network":{}}]}' + 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/v1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c5f814d-c47a-4be8-8bb7-65a23f77fe6f + status: 200 OK + code: 200 + duration: 294.51175ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9e90c4c-bcb7-4a2e-92e3-7942c39ea31c + status: 200 OK + code: 200 + duration: 118.573459ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25cef603-7656-43de-9211-7d70c12fd15a + status: 200 OK + code: 200 + duration: 109.770458ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a8f7426-ce4d-4873-a3a9-2195da632726 + status: 200 OK + code: 200 + duration: 96.752542ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d30b91c-6a21-4551-b577-52d695994f71 + status: 200 OK + code: 200 + duration: 104.49225ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 93311919-a313-4215-846e-ddbee970e08f + status: 200 OK + code: 200 + duration: 450.277959ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:03:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce0dc443-d23c-4caa-afea-b460aef482ab + status: 200 OK + code: 200 + duration: 118.630708ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:04:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b813a9d7-4771-442c-8986-759cec30c9d0 + status: 200 OK + code: 200 + duration: 96.470834ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:04:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16824d38-723b-49ee-be5b-10c6469c2301 + status: 200 OK + code: 200 + duration: 112.714916ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:04:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b71187fd-954d-44ab-901a-9d88134c0a94 + status: 200 OK + code: 200 + duration: 105.641875ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:04:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 27616756-e1c9-4cc2-bde9-5b3c1ebaa0e0 + status: 200 OK + code: 200 + duration: 193.315666ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:04:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a22481b5-16f2-4ff6-9afe-41ba7c721d08 + status: 200 OK + code: 200 + duration: 97.544167ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:04:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e2b5bd9-65d4-48be-b3ed-ea44c18b1116 + status: 200 OK + code: 200 + duration: 115.138417ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:05:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38a3213a-dc1d-4011-b917-535d3a38b12b + status: 200 OK + code: 200 + duration: 137.619875ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:05:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 787ac48b-afbf-4bdc-85da-d1a90ca9516a + status: 200 OK + code: 200 + duration: 137.760542ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:05:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be7c92f9-b60b-4a16-be6a-4305e938f544 + status: 200 OK + code: 200 + duration: 105.811208ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b336fe8-21cc-4d6d-a8c0-3937c7522b62 + status: 200 OK + code: 200 + duration: 301.063459ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:05:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 512855ee-aca3-498f-a7b6-537642a60e2e + status: 200 OK + code: 200 + duration: 115.99675ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:05:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 50f14f08-919e-4bbc-93b4-33107f40b248 + status: 200 OK + code: 200 + duration: 107.022959ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:06:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59cbd4dc-8f4a-4935-b7e6-7dee19b0c501 + status: 200 OK + code: 200 + duration: 184.46675ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:06:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e267cf2c-53d6-4aa7-a24f-fe861de43165 + status: 200 OK + code: 200 + duration: 124.995125ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:06:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c39e2925-1eae-4e9d-b4a8-be6f5f976592 + status: 200 OK + code: 200 + duration: 136.648375ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:06:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c4c8f5dc-5dc3-4a23-9ba6-b7c0a387964e + status: 200 OK + code: 200 + duration: 106.325209ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:06:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e1fcc8d1-ccd4-4414-921c-75db7c32c038 + status: 200 OK + code: 200 + duration: 147.628959ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:06:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59609906-fe5c-4d0b-9616-b9e236e21db7 + status: 200 OK + code: 200 + duration: 97.474875ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:07:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dda68383-feee-4b93-9dd5-357264e6de6c + status: 200 OK + code: 200 + duration: 100.905625ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:07:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ad2485b-15de-443c-8ab9-468590f36617 + status: 200 OK + code: 200 + duration: 324.206208ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b3e6aa7-4adc-4b1d-a58b-0dc9dba51bfc + status: 200 OK + code: 200 + duration: 100.709041ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:07:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9e648f6-9718-4757-b21a-33319660c658 + status: 200 OK + code: 200 + duration: 100.092042ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:07:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 37e41863-a436-47e4-8b85-c22da8563a9d + status: 200 OK + code: 200 + duration: 186.10475ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:07:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac9b0368-933f-4c1d-8b41-dbcfd630e0d4 + status: 200 OK + code: 200 + duration: 93.891375ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:08:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9633556e-8628-47cd-a2e4-93078c1cea71 + status: 200 OK + code: 200 + duration: 175.75175ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:08:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c3a1d9e-c80c-45ce-bb3b-29cf5143ebbe + status: 200 OK + code: 200 + duration: 124.683083ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c72d73fc-b86e-4ef2-9b07-411c4459dc35 + status: 200 OK + code: 200 + duration: 83.072709ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:08:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 979ea758-29bf-47b1-aae7-8fe4ca1df76a + status: 200 OK + code: 200 + duration: 138.760041ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:08:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c68b760b-40a6-4531-8a04-31491cd0a7a9 + status: 200 OK + code: 200 + duration: 155.907291ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:09:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83ea088a-1605-4e4f-a713-cba4f5394da3 + status: 200 OK + code: 200 + duration: 97.7225ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:09:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b25041f-4cf3-4928-a1b4-9fbb24786ef9 + status: 200 OK + code: 200 + duration: 83.460542ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:09:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d76d4e6a-139f-435d-a727-3da568c6f533 + status: 200 OK + code: 200 + duration: 105.101791ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:09:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39e9b0c1-3422-461f-9f69-b55d3abd557b + status: 200 OK + code: 200 + duration: 250.358917ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:09:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ca5450b-3b22-408d-a899-974d9f293593 + status: 200 OK + code: 200 + duration: 110.4335ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:09:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4861c22-1eca-42c3-b978-49419a724865 + status: 200 OK + code: 200 + duration: 89.923333ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:10:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7afab7c5-59b4-4e12-ac33-b9c845bf1c16 + status: 200 OK + code: 200 + duration: 103.873458ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:10:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5710487-c3c4-49fc-9a48-1703dcce3962 + status: 200 OK + code: 200 + duration: 141.234625ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:10:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7031f6bd-87de-482f-8290-2060f0807ae4 + status: 200 OK + code: 200 + duration: 156.585875ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dba88f42-d844-4988-a932-ffeac18e08e2 + status: 200 OK + code: 200 + duration: 84.421583ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38b91d58-f40f-4568-bded-38e336f8a559 + status: 200 OK + code: 200 + duration: 87.818667ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be007887-c936-45a9-907c-7e190d1f7821 + status: 200 OK + code: 200 + duration: 94.095833ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:11:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a99c21f0-0a5f-4efd-bd03-065a93875b7f + status: 200 OK + code: 200 + duration: 87.119917ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:11:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8bfe664f-0699-4884-8134-5f4074da44df + status: 200 OK + code: 200 + duration: 102.1655ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:11:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 476247de-30fb-4c37-a970-016767979f78 + status: 200 OK + code: 200 + duration: 101.259667ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:11:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41464d57-38b9-4962-bbee-493892035efb + status: 200 OK + code: 200 + duration: 95.488084ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:11:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ad30871-d471-4eac-a3da-ec6f5ca58ae6 + status: 200 OK + code: 200 + duration: 249.161ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:11:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 37420c36-3813-43ff-8fc7-bd1579794eea + status: 200 OK + code: 200 + duration: 91.1795ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:12:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 55479e8f-5c7d-4629-8464-8f9c343f5d50 + status: 200 OK + code: 200 + duration: 90.350875ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:12:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 81ce1a25-d56e-4bbe-bc76-81e040662f2d + status: 200 OK + code: 200 + duration: 95.375292ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:12:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ebb84d08-f647-41bb-8b2f-d37b76822bf4 + status: 200 OK + code: 200 + duration: 91.962125ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:12:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7b7e47b-0fa9-43bb-9e23-39db5642be1b + status: 200 OK + code: 200 + duration: 161.292042ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:12:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1c85e174-4a9a-420c-900f-a669ae7bd027 + status: 200 OK + code: 200 + duration: 27.109792ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:12:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c411e38-0b59-4181-a219-0262e65c7a53 + status: 200 OK + code: 200 + duration: 211.792875ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:13:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94ca331d-717d-40d0-989f-b6f600131fd8 + status: 200 OK + code: 200 + duration: 95.285416ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:13:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98a5e099-cb7f-429e-97e8-ab6d2d579b1d + status: 200 OK + code: 200 + duration: 119.982042ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:13:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68ec00e9-1ede-4244-8d5a-50a99844717d + status: 200 OK + code: 200 + duration: 99.033375ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:13:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d073da3-8ed6-4faa-bae4-bee9afaf11ce + status: 200 OK + code: 200 + duration: 90.164125ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:13:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0182ae5f-4c39-497b-ba95-d67575a1f936 + status: 200 OK + code: 200 + duration: 112.403042ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:13:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e29b7fcb-1c55-4c3e-a46f-3ef2bb933da2 + status: 200 OK + code: 200 + duration: 102.613042ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6034085-86bc-41dd-ba07-9b2796f0962a + status: 200 OK + code: 200 + duration: 100.207042ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:14:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fdf13576-f77f-4910-abfc-f2ec34b7e85a + status: 200 OK + code: 200 + duration: 245.619959ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:14:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 245061da-88d5-486d-b91e-95a8a0cb03b2 + status: 200 OK + code: 200 + duration: 91.560333ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:14:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14bbcae6-56d4-4304-9dec-f228c547dcf6 + status: 200 OK + code: 200 + duration: 104.317792ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:14:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7020357f-f7d8-486d-858f-1958e0545abc + status: 200 OK + code: 200 + duration: 92.807542ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:14:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b723e64b-ab53-4ff3-857e-b4f2b5ca2a4b + status: 200 OK + code: 200 + duration: 210.856166ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 686015c8-0230-4708-8535-8f67f23cb768 + status: 200 OK + code: 200 + duration: 74.748ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34cb600a-0bcd-477b-9773-59291b0d6fe3 + status: 200 OK + code: 200 + duration: 97.282542ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b892013e-2aec-4822-8402-36e46817500b + status: 200 OK + code: 200 + duration: 94.256625ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 930 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90d3ac3f-0d34-48df-a6f2-fc5182124fa4 + status: 200 OK + code: 200 + duration: 84.037541ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 923 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "923" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ed6b523-d2b1-486b-b121-9813b0b195e5 + status: 200 OK + code: 200 + duration: 94.990625ms + - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 923 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "923" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7457c92e-7640-4990-a8d2-1a136976b49e + status: 200 OK + code: 200 + duration: 27.108792ms + - 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.0; 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=7e3da6f1-2dac-4009-b8f6-15b6ea368901&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b566ec3a-6a2f-4170-9c24-972a5d877e84&resource_type=mgdb_instance + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 546 + uncompressed: false + body: '{"ips":[{"address":"172.17.220.2/22","created_at":"2025-07-24T14:10:03.393321Z","id":"49a86df0-6470-4a62-9c05-bdc8568bed2f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","mac_address":"02:00:00:18:86:B9","name":"b566ec3a-6a2f-4170-9c24-972a5d877e84-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"806f1ddd-0b26-4d27-b8b4-8f4e3a20f4bd"},"tags":[],"updated_at":"2025-07-24T14:14:06.610270Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "546" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f262024-6772-4a65-b81f-62e7110c5d88 + status: 200 OK + code: 200 + duration: 126.471417ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUs0RDhVK1E2MVNPeWl2dnVhemhUTVl3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnWWpVMk5tVmpNMkV0Tm1FeVppMDBNVGN3TFRsak1qUXRPVGN5CllUVmtPRGMzWlRnME1CNFhEVEkxTURjeU5ERTBNRE13TkZvWERUTTFNRGN5TWpFME1ETXdORm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNCaU5UWTJaV016WVMwMllUSm1MVFF4TnpBdE9XTXlOQzA1Ck56SmhOV1E0TnpkbE9EUXdLakFGQmdNclpYQURJUUNDWGV2anA3d2dxSXRsbGxiL2JtSnc0TFVQSTFZeUgvNUYKUEx6Wm9pQXlnNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFlMWhGMW1UTHdyWmxPCkdJRkxVdHl3SUFLMnRqQUZCZ01yWlhBRFFRQmpCeUFzamczRUVQTndVdWNYNmtHbWNlL1M0VkUzcGlhMjZ6OEkKaWhENlVGSzF3WU1BeC9MNDh1NzFmUU0vcDBkRm5HTmIrTG55N2t6SE9qOEhrRUVNCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b086306-1af1-4282-968c-b47bb0a8b139 + status: 200 OK + code: 200 + duration: 89.589375ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 923 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "923" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 199ccd86-62a8-4007-8ef8-99e7e9adcf22 + status: 200 OK + code: 200 + duration: 24.122541ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7e3da6f1-2dac-4009-b8f6-15b6ea368901 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1089 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:03.963085Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","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-07-24T14:03:03.963085Z","id":"806f1ddd-0b26-4d27-b8b4-8f4e3a20f4bd","private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.220.0/22","updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-24T14:03:03.963085Z","id":"433eec67-039e-46cd-ae11-a014e4c0f20c","private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5836::/64","updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-24T14:03:03.963085Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + headers: + Content-Length: + - "1089" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af891030-7462-4086-a0ab-ad98098377f4 + status: 200 OK + code: 200 + duration: 29.54975ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 923 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "923" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05ae2172-e411-4136-b005-82a9fa8f139d + status: 200 OK + code: 200 + duration: 33.92175ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; 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=7e3da6f1-2dac-4009-b8f6-15b6ea368901&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b566ec3a-6a2f-4170-9c24-972a5d877e84&resource_type=mgdb_instance + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 546 + uncompressed: false + body: '{"ips":[{"address":"172.17.220.2/22","created_at":"2025-07-24T14:10:03.393321Z","id":"49a86df0-6470-4a62-9c05-bdc8568bed2f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","mac_address":"02:00:00:18:86:B9","name":"b566ec3a-6a2f-4170-9c24-972a5d877e84-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"806f1ddd-0b26-4d27-b8b4-8f4e3a20f4bd"},"tags":[],"updated_at":"2025-07-24T14:14:06.610270Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "546" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b42e795-fd86-4a3d-b9f1-d43d09b316a9 + status: 200 OK + code: 200 + duration: 121.782042ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUs0RDhVK1E2MVNPeWl2dnVhemhUTVl3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnWWpVMk5tVmpNMkV0Tm1FeVppMDBNVGN3TFRsak1qUXRPVGN5CllUVmtPRGMzWlRnME1CNFhEVEkxTURjeU5ERTBNRE13TkZvWERUTTFNRGN5TWpFME1ETXdORm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNCaU5UWTJaV016WVMwMllUSm1MVFF4TnpBdE9XTXlOQzA1Ck56SmhOV1E0TnpkbE9EUXdLakFGQmdNclpYQURJUUNDWGV2anA3d2dxSXRsbGxiL2JtSnc0TFVQSTFZeUgvNUYKUEx6Wm9pQXlnNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFlMWhGMW1UTHdyWmxPCkdJRkxVdHl3SUFLMnRqQUZCZ01yWlhBRFFRQmpCeUFzamczRUVQTndVdWNYNmtHbWNlL1M0VkUzcGlhMjZ6OEkKaWhENlVGSzF3WU1BeC9MNDh1NzFmUU0vcDBkRm5HTmIrTG55N2t6SE9qOEhrRUVNCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b294e77c-9798-49bf-9114-11a6acb456b6 + status: 200 OK + code: 200 + duration: 75.411417ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 923 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "923" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6710d2b5-b763-44ab-8063-25a145fb8f7f + status: 200 OK + code: 200 + duration: 34.138708ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 809 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "809" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4d2ea02f-19f2-4203-832a-bfe40aee1d7e + status: 200 OK + code: 200 + duration: 173.071958ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f72f9823-ce90-4877-9e82-cf4c30e2ac07 + status: 200 OK + code: 200 + duration: 92.960708ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:15:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a878f36-0881-4fee-9e69-b15f4494f771 + status: 200 OK + code: 200 + duration: 111.772875ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:16:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 390102cd-9f90-45e2-97e3-7fb1897c1052 + status: 200 OK + code: 200 + duration: 95.563083ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:16:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ce02e1d-f0e2-4077-bf61-69b2532dceff + status: 200 OK + code: 200 + duration: 107.915791ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:16:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - efc76bbd-287a-4afe-b59d-ce3a4e4e79c0 + status: 200 OK + code: 200 + duration: 112.018667ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:16:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 74a35a32-541b-44ed-a273-85e35df4a6c0 + status: 200 OK + code: 200 + duration: 185.851375ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:16:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0eac9fa7-bd79-40dd-b165-a2f286039f91 + status: 200 OK + code: 200 + duration: 79.510458ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:16:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe16d5cc-32fe-47eb-ade5-aba8eb5e9931 + status: 200 OK + code: 200 + duration: 95.722625ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:17:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b992d4b-1a4f-4720-b418-c5e70417a54c + status: 200 OK + code: 200 + duration: 109.269791ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:17:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 698af20d-f29c-4ff3-ac4e-a919c72d9be3 + status: 200 OK + code: 200 + duration: 288.365875ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:17:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0502909b-4103-4e1e-937b-5cd552c781c1 + status: 200 OK + code: 200 + duration: 110.014125ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:17:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88b28534-d735-491f-ab15-881437a4da8e + status: 200 OK + code: 200 + duration: 82.551291ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 926 + uncompressed: false + body: '{"created_at":"2025-07-24T14:03:04.727875Z","endpoints":[{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.7e3da6f1-2dac-4009-b8f6-15b6ea368901.internal","id":"351aab00-a0b8-4ded-ab85-4a1dd99cb356","port":27017,"private_network":{"private_network_id":"7e3da6f1-2dac-4009-b8f6-15b6ea368901"}},{"dns_record":"b566ec3a-6a2f-4170-9c24-972a5d877e84.mgdb.fr-par.scw.cloud","id":"1fe2eff2-264c-41f8-ac1a-fc8de8416a66","port":27017,"public_network":{}}],"id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:03:04.933525Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "926" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:17:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ed37ef4a-116c-4f68-ad58-b07ff8f558e9 + status: 200 OK + code: 200 + duration: 201.263417ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:17:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 62b05080-2e1e-4850-a534-2a88c4101e20 + status: 404 Not Found + code: 404 + duration: 29.004333ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7e3da6f1-2dac-4009-b8f6-15b6ea368901 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:18:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6e1b3282-914d-4e95-a4a4-8ccb3059e058 + status: 204 No Content + code: 204 + duration: 2.378532583s + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b566ec3a-6a2f-4170-9c24-972a5d877e84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"b566ec3a-6a2f-4170-9c24-972a5d877e84","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 24 Jul 2025 14:18:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - afb80a29-0658-44b4-9e28-1e5de640fc42 + status: 404 Not Found + code: 404 + duration: 25.804041ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-update-name-tags-user.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-update-name-tags-user.cassette.yaml deleted file mode 100644 index 269d7d3c2..000000000 --- a/internal/services/mongodb/testdata/mongo-db-instance-update-name-tags-user.cassette.yaml +++ /dev/null @@ -1,3341 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 327 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-update-initial","version":"7.0","tags":["initial_tag1","initial_tag2"],"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"user","password":"initial_password","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' - 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/v1/regions/fr-par/instances - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:37:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f39323e0-1462-41eb-91fc-817f62830922 - status: 200 OK - code: 200 - duration: 755.670958ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:37:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0c94f453-5571-40eb-a6f7-2379d7e1687e - status: 200 OK - code: 200 - duration: 88.664458ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:37:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9fcdb8c-ec76-413c-bccc-cc615a6ac471 - status: 200 OK - code: 200 - duration: 99.997416ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:37:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 948daa64-2259-4aa6-babf-bd83e456997f - status: 200 OK - code: 200 - duration: 154.499583ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:37:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2a86b341-a73e-4a41-9a16-ceea9a8c54c1 - status: 200 OK - code: 200 - duration: 89.170541ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:38:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ffb3be8-60d5-4271-bd33-7544505c26e4 - status: 200 OK - code: 200 - duration: 101.971833ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:38:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bcc05370-6251-4897-9bf5-5178cea0cfa1 - status: 200 OK - code: 200 - duration: 120.749666ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:38:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7ea5fa86-7f2a-4173-9efa-1249c30868cb - status: 200 OK - code: 200 - duration: 95.267042ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:38:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3c39c9fc-876d-43b6-8819-298eb56f4804 - status: 200 OK - code: 200 - duration: 96.63125ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:38:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d40e2b7e-5bba-419f-aa58-c157ebc25c45 - status: 200 OK - code: 200 - duration: 100.590875ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:38:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff12c223-ae6c-4d12-aef7-911333907dfe - status: 200 OK - code: 200 - duration: 279.324916ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:39:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 564f5b37-17bc-4e38-a88b-d3e09f9ebeaa - status: 200 OK - code: 200 - duration: 109.807458ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:39:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2e6cac70-c241-41b2-b77a-38b033f4d671 - status: 200 OK - code: 200 - duration: 104.322792ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:39:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fa355885-623f-41f4-9403-d30cbe1ff38a - status: 200 OK - code: 200 - duration: 108.089125ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:39:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bf0fa520-190c-4099-81d4-4df21f8412d8 - status: 200 OK - code: 200 - duration: 231.02875ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:39:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e14b8ac-ce2d-4c73-9913-ad919b83227d - status: 200 OK - code: 200 - duration: 109.078791ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:39:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3dd09939-4891-4a48-bc57-dc2ab791f7d1 - status: 200 OK - code: 200 - duration: 111.067708ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:40:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 69ee4494-f065-4edb-8686-667396a15b43 - status: 200 OK - code: 200 - duration: 89.5125ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:40:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0a930d50-28da-40b3-8297-4b0060de5849 - status: 200 OK - code: 200 - duration: 103.616041ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:40:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3f7d349a-b0b3-49bd-97a6-494720a814f0 - status: 200 OK - code: 200 - duration: 108.280417ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:40:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f5cac250-4bfb-49de-a354-78ba49c72e02 - status: 200 OK - code: 200 - duration: 128.81025ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:40:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ce5e142-3456-4c9e-8c33-b6800719e403 - status: 200 OK - code: 200 - duration: 87.271958ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:40:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 01256b3c-2db5-4db1-8bb9-e5da7ddc9fdd - status: 200 OK - code: 200 - duration: 139.525583ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:41:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9999d9ff-f3e0-404a-a181-a1aafcab980a - status: 200 OK - code: 200 - duration: 94.004166ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:41:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5c5bb55c-d607-4279-bbc6-7f79433e8dbc - status: 200 OK - code: 200 - duration: 146.154ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:41:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dbca8610-80a9-4b3b-8da8-8a2f4add125a - status: 200 OK - code: 200 - duration: 91.423375ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:41:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f7232351-2b61-4aae-aa04-9732455ba281 - status: 200 OK - code: 200 - duration: 94.065542ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:41:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a9e0b96-8e99-4d64-80c3-600fe6006473 - status: 200 OK - code: 200 - duration: 575.985125ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:42:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 406538b1-0c41-42e9-8b3c-6de26f30b81e - status: 200 OK - code: 200 - duration: 88.3795ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:42:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4813a1a4-f083-4cf6-9cdc-5976b599e27b - status: 200 OK - code: 200 - duration: 213.152375ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:42:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 16e7c05e-f575-43a5-af3d-b8e2c93fb074 - status: 200 OK - code: 200 - duration: 85.600625ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:42:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7d9c5d9-7abf-46d7-8d48-e62d8f1cdcc5 - status: 200 OK - code: 200 - duration: 80.786584ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:42:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0f144d70-4363-4cbb-aca1-e78c22468ea8 - status: 200 OK - code: 200 - duration: 84.043416ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:42:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7806a299-4be9-4832-bacb-b3054d3ee7a4 - status: 200 OK - code: 200 - duration: 169.73ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:43:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98dcdf1b-9423-4d73-ad5d-d94ec3f47593 - status: 200 OK - code: 200 - duration: 82.341667ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:43:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c2aeb5c-9243-405a-a5ad-2dfa0a241df9 - status: 200 OK - code: 200 - duration: 85.304833ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:43:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a576cb20-3da8-4849-ba37-515fd6b9df93 - status: 200 OK - code: 200 - duration: 123.351417ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:43:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dbc1b6ed-3030-404f-96fb-e6f5b4869c64 - status: 200 OK - code: 200 - duration: 100.686625ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:43:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0329237d-d5da-4d54-a478-170a093a8eba - status: 200 OK - code: 200 - duration: 159.255333ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 719 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "719" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:43:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6696c66b-e374-4d11-91af-4de65acf56f3 - status: 200 OK - code: 200 - duration: 97.097208ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 712 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "712" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6f14cebb-5672-47a9-8c19-a18b15a133fd - status: 200 OK - code: 200 - duration: 103.189625ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 712 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "712" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 83537684-5ca9-4394-9afa-4bcaba789045 - status: 200 OK - code: 200 - duration: 98.159666ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 712 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "712" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 32a4e705-3ae7-4f80-a03d-f8c83c399e3a - status: 200 OK - code: 200 - duration: 33.309417ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 712 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "712" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 407740ff-f8dc-4c3c-a7ca-297deb8dba98 - status: 200 OK - code: 200 - duration: 26.50625ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 712 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-initial","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "712" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8f04111f-1d5b-4594-a2c8-dfe641a7c588 - status: 200 OK - code: 200 - duration: 104.440542ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 90 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-mongodb-update-final","tags":["updated_tag1","updated_tag2","updated_tag3"]}' - 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/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 726 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4ba21a86-2596-438f-8496-cb37a1416c64 - status: 200 OK - code: 200 - duration: 100.345416ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 31 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"password":"updated_password"}' - 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/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92/users/user - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 149 - uncompressed: false - body: '{"name":"user","roles":[{"any_database":true,"role":"read_write"},{"any_database":true,"role":"db_admin"},{"any_database":true,"role":"sync"}]}' - headers: - Content-Length: - - "149" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9026714f-dcdd-489d-a579-713b971b1034 - status: 200 OK - code: 200 - duration: 446.96925ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 726 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fc204805-25d0-4ff8-be54-1504cb21d335 - status: 200 OK - code: 200 - duration: 79.22575ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 726 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 326be769-1b0d-416c-8289-5227b1400cf3 - status: 200 OK - code: 200 - duration: 27.275542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 726 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 401e44fb-ecaf-41e9-aecc-813270ac23f3 - status: 200 OK - code: 200 - duration: 30.579958ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 726 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b62a7cc-8871-4d19-a17a-bc6b240fd3bb - status: 200 OK - code: 200 - duration: 82.334125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 726 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8f446d18-1cc3-45c1-b04c-422e0ec945ca - status: 200 OK - code: 200 - duration: 28.917125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 612 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "612" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e62f136-2e6a-412f-9e7c-907b758e8665 - status: 200 OK - code: 200 - duration: 153.855125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eb9aaf6d-d0a6-47e1-9acd-8daa5e3eb2ed - status: 200 OK - code: 200 - duration: 81.157625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 753f40e6-c4c8-4136-8f27-0fcb05b71684 - status: 200 OK - code: 200 - duration: 94.38375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 06f6db83-34e6-48ea-9abe-3c7d1729a05b - status: 200 OK - code: 200 - duration: 176.16525ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3c1260d9-b130-4936-944c-b7af579dbcb3 - status: 200 OK - code: 200 - duration: 95.117625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d37ae4fe-876a-49d6-ae9d-312333efce20 - status: 200 OK - code: 200 - duration: 97.561667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:44:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0dfe44e9-7cdf-4c2b-a9fb-a1a83ff163af - status: 200 OK - code: 200 - duration: 80.492125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d07fc10-897c-4fca-a153-658334562d7b - status: 200 OK - code: 200 - duration: 128.550333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 046477fa-fd92-4f19-b975-929280ddb3e6 - status: 200 OK - code: 200 - duration: 313.9145ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c6ee940-ac15-4065-8bce-da9fc9fee26f - status: 200 OK - code: 200 - duration: 89.733333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5458807d-83a4-462c-8394-048a0744b934 - status: 200 OK - code: 200 - duration: 101.62ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 13d316a7-ce2d-46c9-995a-67f17dfbeed9 - status: 200 OK - code: 200 - duration: 93.31075ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 00e1342f-03d0-463c-9be2-79bd16112376 - status: 200 OK - code: 200 - duration: 114.157125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 729 - uncompressed: false - body: '{"created_at":"2025-07-21T12:37:26.583108Z","endpoints":[{"dns_record":"8b50c819-8489-40fc-a4cb-308bb39b5d92.mgdb.fr-par.scw.cloud","id":"d2738053-a08a-4403-9019-332406c72f54","port":27017,"public_network":{}}],"id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","name":"test-mongodb-update-final","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:37:27.008766Z","retention_days":7},"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "729" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d30d72e1-5a00-45f8-a6a8-f77dc406b821 - status: 200 OK - code: 200 - duration: 95.628875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ae3ec069-ea20-4739-bf60-6d6dc57d2d14 - status: 404 Not Found - code: 404 - duration: 25.218542ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/8b50c819-8489-40fc-a4cb-308bb39b5d92 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"8b50c819-8489-40fc-a4cb-308bb39b5d92","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4daf9554-7215-430b-9508-5c508ed70ebb - status: 404 Not Found - code: 404 - duration: 30.417416ms 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 deleted file mode 100644 index a7ab35cc8..000000000 --- a/internal/services/mongodb/testdata/mongo-db-instance-update-private-network.cassette.yaml +++ /dev/null @@ -1,9656 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 152 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"update_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 320b1d5a-540c-4327-bb83-283ce4e95706 - status: 200 OK - code: 200 - duration: 841.018292ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 148 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6287e77e-e248-48c2-ad50-c829156a5b5f - status: 200 OK - code: 200 - duration: 841.027042ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ae0d844-7835-4570-91a3-2fa81d67febd - status: 200 OK - code: 200 - duration: 36.115458ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d42a4b53-966f-4dd8-9047-aa89a6b8e840 - status: 200 OK - code: 200 - duration: 100.435ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3c896878-8809-411c-a43a-ff8a56a80e17 - status: 200 OK - code: 200 - duration: 21.79175ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6020636d-a6ea-4ac9-ba11-124200177475 - status: 200 OK - code: 200 - duration: 49.512416ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0dd62e71-dda9-4c35-b20a-5faa9ed0f107 - status: 200 OK - code: 200 - duration: 22.31825ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 740cca4c-9544-4709-822b-912db5d153dc - status: 200 OK - code: 200 - duration: 87.617083ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 380 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-private-network","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}]}' - 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/v1/regions/fr-par/instances - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c8d009a-5581-473e-bf4e-4ce72f9c7224 - status: 200 OK - code: 200 - duration: 303.204042ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 67b92dd9-2d9e-4556-949a-2e2b6d65b1dc - status: 200 OK - code: 200 - duration: 92.883792ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - adbf0c62-1838-4916-9f2a-01a80532b243 - status: 200 OK - code: 200 - duration: 266.513125ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9de3068-8233-442f-b4c5-2c5e0f819154 - status: 200 OK - code: 200 - duration: 96.957875ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6a10623c-3960-4ad8-9048-52a70ce67ed2 - status: 200 OK - code: 200 - duration: 89.668083ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8f71b1e0-5f8b-4958-88e9-8f63d9135afe - status: 200 OK - code: 200 - duration: 97.880042ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 471c897a-83f8-459c-a160-2d74870cce51 - status: 200 OK - code: 200 - duration: 213.772958ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ffe215c4-cdfc-4e09-aa5c-40f4859cb2d4 - status: 200 OK - code: 200 - duration: 31.008125ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ccbb5ea8-8bf9-4729-8e7e-8953066bdaa7 - status: 200 OK - code: 200 - duration: 102.641083ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4633fafe-c81d-4eb9-a43a-4e37b5478fb7 - status: 200 OK - code: 200 - duration: 312.460292ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb0e3c80-d818-4ff8-8b70-9b5419816574 - status: 200 OK - code: 200 - duration: 90.713ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 86e8b5dd-a0fe-44c1-acdb-e6cd859ce5da - status: 200 OK - code: 200 - duration: 99.07925ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 240b8b45-8881-4490-b73d-4d4a93fe57be - status: 200 OK - code: 200 - duration: 98.573208ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b35c742c-12cb-4b5d-a253-bc6ef40eaff8 - status: 200 OK - code: 200 - duration: 308.037375ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a6f0d0ce-be96-4829-bb24-fd28112d5c2e - status: 200 OK - code: 200 - duration: 103.620833ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 20aede6c-9904-4b3d-aa35-e3d3c124a3e9 - status: 200 OK - code: 200 - duration: 235.520334ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f171bbf1-0aa9-4262-be64-2787732ce8c0 - status: 200 OK - code: 200 - duration: 84.685417ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 08b6caa3-8628-4b60-9d30-daf55e086df3 - status: 200 OK - code: 200 - duration: 349.927375ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f373e78b-8c23-4486-8d34-a2a36e06fbc6 - status: 200 OK - code: 200 - duration: 109.197ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a00a840c-60e6-449f-99eb-52f132f4f798 - status: 200 OK - code: 200 - duration: 92.868583ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b9e71e5-bbfa-4883-82e7-5a8fe5582871 - status: 200 OK - code: 200 - duration: 190.046666ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 038be02a-47dc-42bd-bc1c-1aaa570a725b - status: 200 OK - code: 200 - duration: 104.306916ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6f5cdb5d-e87f-477d-819f-329ef3ae3692 - status: 200 OK - code: 200 - duration: 101.277208ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04fc1c5e-d706-4f84-a200-840012a3df9e - status: 200 OK - code: 200 - duration: 178.557458ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2aa014be-9829-4a9a-a3ee-b31af73f50fd - status: 200 OK - code: 200 - duration: 101.320791ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 056d1719-1c25-40a7-bd88-7c250fa47c49 - status: 200 OK - code: 200 - duration: 95.42075ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - df30340a-5943-44e0-ad9f-a516bf26db36 - status: 200 OK - code: 200 - duration: 104.171375ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cad2f92a-9907-44d0-b18d-fab3c95687ed - status: 200 OK - code: 200 - duration: 112.47025ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d58545fa-d76f-4e09-aea4-36a3ffeb463b - status: 200 OK - code: 200 - duration: 93.952417ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dd952007-28da-4585-817d-a88221c4fb1c - status: 200 OK - code: 200 - duration: 107.424208ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ae33519-b718-417e-ad27-3b5e9b604aaa - status: 200 OK - code: 200 - duration: 103.1725ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 951e6268-3853-4e10-af3e-96a94b0f5ca8 - status: 200 OK - code: 200 - duration: 239.027417ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 137fbe91-58c2-4f6f-87f5-bd1394bbe403 - status: 200 OK - code: 200 - duration: 88.929125ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5a1a4ff-e72a-48f0-94e5-57ed47c2fd85 - status: 200 OK - code: 200 - duration: 83.791917ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7064662c-afbc-4abd-85c8-fb94b0f136a7 - status: 200 OK - code: 200 - duration: 105.369542ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cdb02bd3-d48c-4a51-9b1d-39d4f661d7c7 - status: 200 OK - code: 200 - duration: 107.194667ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 452a482e-3bc0-4d96-be46-5911a741d0f8 - status: 200 OK - code: 200 - duration: 105.044208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3fa6dd7-46a1-440a-9c3e-62de19efcf8e - status: 200 OK - code: 200 - duration: 92.763083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b61ac8ad-03a9-498d-9177-5da544cd21d1 - status: 200 OK - code: 200 - duration: 107.402042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 19949393-7944-49fc-bc2c-5be47811ffe9 - status: 200 OK - code: 200 - duration: 263.3035ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4fed4545-0499-4156-8582-6bdbe93a713d - status: 200 OK - code: 200 - duration: 109.955292ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8b3d631-d854-40ad-91dc-a0e10300ae75 - status: 200 OK - code: 200 - duration: 116.056083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0fffafcf-e1f1-4670-956c-ff9573899bfb - status: 200 OK - code: 200 - duration: 89.723625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 715c7668-96b7-4d27-9fbb-5b615545c0c0 - status: 200 OK - code: 200 - duration: 107.647333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fa0624f5-f9ad-4955-b81b-9abc81e15ed4 - status: 200 OK - code: 200 - duration: 98.586583ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fff1ca8e-e36f-4972-9009-c41d07c5a937 - status: 200 OK - code: 200 - duration: 223.929375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14241b74-3ac7-4acc-89fe-733e871619e5 - status: 200 OK - code: 200 - duration: 88.960167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 851107ec-2fed-4516-83f3-4c4a2ac8a506 - status: 200 OK - code: 200 - duration: 91.741125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e52facf2-c07b-4c71-ab92-f2bb866622ec - status: 200 OK - code: 200 - duration: 84.526792ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f9bf9fc3-573c-4890-b5c8-d537ae694f7e - status: 200 OK - code: 200 - duration: 92.639292ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cab1ef9c-cbfd-4988-a58e-671a456664a5 - status: 200 OK - code: 200 - duration: 206.578959ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ef5a92b1-5ba5-4fe0-baa1-04647cd600d2 - status: 200 OK - code: 200 - duration: 144.639291ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff5a6f1b-e619-4543-904a-a44b663815b1 - status: 200 OK - code: 200 - duration: 102.500167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9dc692a5-106f-4f73-a3bd-0e8c8edfd8eb - status: 200 OK - code: 200 - duration: 87.510208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 33a21fda-cee6-4505-a5da-fce3a4804822 - status: 200 OK - code: 200 - duration: 177.294708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b038942b-c3f3-4531-899f-9adeb2feb113 - status: 200 OK - code: 200 - duration: 90.305958ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 96178ca6-e233-4a8f-b8e2-29e808e5b426 - status: 200 OK - code: 200 - duration: 96.370541ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ca02dfb2-1007-4eb0-9270-be767d296e44 - status: 200 OK - code: 200 - duration: 93.171708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c590a90-ad01-4a6c-81c4-9035fd3fd127 - status: 200 OK - code: 200 - duration: 91.543667ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e43d5b8-70ef-4ced-b1ff-95da45ec4806 - status: 200 OK - code: 200 - duration: 266.203833ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ef932ddf-4fda-4147-a77d-58c3f053e3fe - status: 200 OK - code: 200 - duration: 203.068125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3eb4f373-65d5-4d1b-8c48-819f6346159d - status: 200 OK - code: 200 - duration: 101.730291ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d9363da7-2a6d-4ed9-ab66-f0ca15ef56b7 - status: 200 OK - code: 200 - duration: 92.403417ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8346cdb6-17c3-4d89-9a73-7911958d43c3 - status: 200 OK - code: 200 - duration: 129.051625ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 503fb74d-9765-467c-8919-c1c13cccd469 - status: 200 OK - code: 200 - duration: 97.541458ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52e49de4-fd82-4b55-8654-d98ad98e6e2e - status: 200 OK - code: 200 - duration: 80.179958ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a18baee8-fbbc-49c8-af5d-b6e727f69206 - status: 200 OK - code: 200 - duration: 218.081875ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 03993fe1-14f5-428b-aa9c-e3f79763ad89 - status: 200 OK - code: 200 - duration: 93.120042ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 061b135d-05ed-4aba-a6d6-90ade4e5fa02 - status: 200 OK - code: 200 - duration: 87.618125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 93deaeb2-47b0-472a-a953-882396823cc1 - status: 200 OK - code: 200 - duration: 86.781708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ab642e3d-ae09-4e5d-a8c2-9cd05dc469b8 - status: 200 OK - code: 200 - duration: 95.56725ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e13df79-bd04-4d70-9598-0d76a272c50c - status: 200 OK - code: 200 - duration: 282.879333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b5d52a14-5a0b-4ab2-8cbb-e02842603067 - status: 200 OK - code: 200 - duration: 76.942833ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6c974e9-774d-445d-852b-698dc1382830 - status: 200 OK - code: 200 - duration: 91.521833ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 43e51254-1d2f-40e7-bfe2-2bc647725c6c - status: 200 OK - code: 200 - duration: 176.681541ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5a021eb1-98bc-48bc-92dc-ed8d314c22c0 - status: 200 OK - code: 200 - duration: 83.613833ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c330d7bc-cb35-414d-83b0-66de5e9f0b95 - status: 200 OK - code: 200 - duration: 78.827833ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a42a8ccf-3c74-42b5-a6f3-159d34860f1f - status: 200 OK - code: 200 - duration: 120.324667ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a608a858-9adc-47cc-a28f-1ffb765bc753 - status: 200 OK - code: 200 - duration: 75.57025ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be2b4e3c-97e8-41d4-a62a-a628c366c367 - status: 200 OK - code: 200 - duration: 196.614208ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c243986b-40b1-4567-96b6-f8fc057164ff - status: 200 OK - code: 200 - duration: 93.920625ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d419f06-ae4a-40c4-b2b1-7df02537e8ae - status: 200 OK - code: 200 - duration: 245.402083ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c3bd545-0cdc-41e2-9267-6404a36ece7d - status: 200 OK - code: 200 - duration: 87.2925ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e08bfe13-d99e-4ff8-ac64-c6df59a236e5 - status: 200 OK - code: 200 - duration: 81.581292ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea9b2759-c6cd-410d-ab63-4d03bdfede87 - status: 200 OK - code: 200 - duration: 152.105417ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 27d9f5ac-6694-4501-93d2-769a471a2c04 - status: 200 OK - code: 200 - duration: 108.843834ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7e57291c-e044-4f9d-bbb1-5f9054715b9b - status: 200 OK - code: 200 - duration: 87.383833ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 165e9296-7037-49c1-8d17-ac69ace88ccb - status: 200 OK - code: 200 - duration: 268.909084ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a387342a-9679-44b8-bf9c-8a67d1404620 - status: 200 OK - code: 200 - duration: 94.936167ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6d1c40b7-6d19-4b19-88a8-458a96acc0a1 - status: 200 OK - code: 200 - duration: 103.407875ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 053d72d5-7cd1-4200-8d53-1e2e4fc11a86 - status: 200 OK - code: 200 - duration: 99.648667ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ab61a0ca-c22b-46c2-890e-7635f9213505 - status: 200 OK - code: 200 - duration: 99.517167ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e8edc1e-7176-4eca-8e05-c2c0479011de - status: 200 OK - code: 200 - duration: 241.117083ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 57747cec-65ae-41b8-b0eb-0e871f743e59 - status: 200 OK - code: 200 - duration: 70.245458ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb951dbc-8943-4169-a921-5fca13b9bd8e - status: 200 OK - code: 200 - duration: 86.336208ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 77e0dadf-c77b-4794-bd7e-ef139431c3bd - status: 200 OK - code: 200 - duration: 84.227ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ea2cec7-454c-43a3-98cb-0d7a4270c061 - status: 200 OK - code: 200 - duration: 114.798875ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d17d151a-72bb-4200-b7b4-82174b2c1470 - status: 200 OK - code: 200 - duration: 134.140459ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f79f77b8-b5b5-4462-abec-57ea95ccc9aa - status: 200 OK - code: 200 - duration: 96.107292ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 085cf931-93f5-49b5-a23a-39d14d524b32 - status: 200 OK - code: 200 - duration: 75.70225ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a7613a4d-3832-46c4-8faf-cd6351b9f745 - status: 200 OK - code: 200 - duration: 87.47725ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7336d5de-95fd-4fb6-9695-1a3e65e19554 - status: 200 OK - code: 200 - duration: 226.481541ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b85f8e2-0613-4dbf-a53f-f30e1c98401f - status: 200 OK - code: 200 - duration: 90.082709ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e2366746-ef96-440b-a366-3dffae1024b8 - status: 200 OK - code: 200 - duration: 87.204042ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4656ba95-cbed-4a88-8e2c-3d0003b0b21c - status: 200 OK - code: 200 - duration: 134.206708ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b959443b-1413-4c3a-a214-f4556ace02db - status: 200 OK - code: 200 - duration: 214.925667ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 21dbbc3b-6d0d-42e3-9949-c9c4d0c21493 - status: 200 OK - code: 200 - duration: 103.158125ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d90d0e9-2a71-4043-8f27-dda906c70480 - status: 200 OK - code: 200 - duration: 120.457875ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b596f71-bfea-47c4-b835-118343cb0c46 - status: 200 OK - code: 200 - duration: 85.364584ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1f1d2d03-ff0f-4cc5-bd10-5055f208a542 - status: 200 OK - code: 200 - duration: 109.741083ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 668e3a7b-1893-4320-a40a-6073b6e2ce5f - status: 200 OK - code: 200 - duration: 92.954125ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fd820f7c-c3d0-45b8-a229-08a55d4dbb6a - status: 200 OK - code: 200 - duration: 23.664ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; 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=fb31f129-95ca-484c-8103-0688fe85d204&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=57e0a467-ee81-4fb8-966e-938aa61e64bd&resource_type=mgdb_instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 545 - uncompressed: false - body: '{"ips":[{"address":"172.17.92.2/22","created_at":"2025-07-21T12:54:15.432334Z","id":"fe697a47-adfe-43ac-8a5a-76f5f5a0d26c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","mac_address":"02:00:00:13:65:D9","name":"57e0a467-ee81-4fb8-966e-938aa61e64bd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3"},"tags":[],"updated_at":"2025-07-21T13:01:50.121742Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "545" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 49eb1e09-1971-40e2-abca-dbcaba1b521a - status: 200 OK - code: 200 - duration: 125.600958ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a4b6f234-f85d-4fc5-ac09-fc7f2a4511af - status: 200 OK - code: 200 - duration: 24.433667ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c41fd39a-1e41-4fed-8f92-ade86f5b7a6a - status: 200 OK - code: 200 - duration: 23.993ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b386a2f-95cc-45b3-9e39-f6e5606a159a - status: 200 OK - code: 200 - duration: 30.705209ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ef786a5b-9666-476d-acf9-18f3f8b10c6a - status: 200 OK - code: 200 - duration: 83.878125ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; 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=fb31f129-95ca-484c-8103-0688fe85d204&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=57e0a467-ee81-4fb8-966e-938aa61e64bd&resource_type=mgdb_instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 545 - uncompressed: false - body: '{"ips":[{"address":"172.17.92.2/22","created_at":"2025-07-21T12:54:15.432334Z","id":"fe697a47-adfe-43ac-8a5a-76f5f5a0d26c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","mac_address":"02:00:00:13:65:D9","name":"57e0a467-ee81-4fb8-966e-938aa61e64bd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3"},"tags":[],"updated_at":"2025-07-21T13:01:50.121742Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "545" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 08aef42a-367e-4465-b530-0f140237eff5 - status: 200 OK - code: 200 - duration: 167.085667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e6e653e-073b-4f59-8e90-d0d50ed52cf4 - status: 200 OK - code: 200 - duration: 29.569042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14252ad5-3d90-4016-9332-1811f051c3c3 - status: 200 OK - code: 200 - duration: 26.410083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 61d955c7-f981-40bf-a00b-6274f6396a80 - status: 200 OK - code: 200 - duration: 81.104084ms - - 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.0; 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=fb31f129-95ca-484c-8103-0688fe85d204&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=57e0a467-ee81-4fb8-966e-938aa61e64bd&resource_type=mgdb_instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 545 - uncompressed: false - body: '{"ips":[{"address":"172.17.92.2/22","created_at":"2025-07-21T12:54:15.432334Z","id":"fe697a47-adfe-43ac-8a5a-76f5f5a0d26c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","mac_address":"02:00:00:13:65:D9","name":"57e0a467-ee81-4fb8-966e-938aa61e64bd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3"},"tags":[],"updated_at":"2025-07-21T13:01:50.121742Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "545" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2265435c-52c1-4fbb-9a6b-2a0cc2b5d0a8 - status: 200 OK - code: 200 - duration: 46.679875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 75456e25-5c3b-40c2-ad45-7ddbad017c79 - status: 200 OK - code: 200 - duration: 21.043209ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/endpoints/9b75b044-b03d-4724-8a42-88233b35d076 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bc318014-dae6-4322-8ea7-ac5dcc4b2a8d - status: 204 No Content - code: 204 - duration: 211.95275ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.fb31f129-95ca-484c-8103-0688fe85d204.internal","id":"9b75b044-b03d-4724-8a42-88233b35d076","port":27017,"private_network":{"private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6710907-d471-42de-b614-4e73232ea0e4 - status: 200 OK - code: 200 - duration: 78.565708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b9f17ee3-d4d5-49c1-b96f-7c529d25e6d5 - status: 200 OK - code: 200 - duration: 98.7055ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 500721cf-f066-46c2-b8d3-c4e1f967ba40 - status: 200 OK - code: 200 - duration: 120.401042ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 147 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"instance_id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","endpoint":{"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}}' - 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/v1/regions/fr-par/endpoints - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7eca37b8-0689-4e89-96c8-7ad61cebe700 - status: 200 OK - code: 200 - duration: 236.270208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7c21d0b-0efd-4c74-8e76-91bba36bae0b - status: 200 OK - code: 200 - duration: 26.644584ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 72df0801-8724-4572-84b9-c7698fa9a61e - status: 200 OK - code: 200 - duration: 88.993708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3b65559-0d6c-4c9e-afdb-961728f70f5d - status: 200 OK - code: 200 - duration: 216.148917ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f10bbdd3-f776-4128-96d9-a1668c5ea08c - status: 200 OK - code: 200 - duration: 97.330042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b0dbd4c3-fb19-41af-8f04-51f35cd01d36 - status: 200 OK - code: 200 - duration: 91.806292ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5658adcd-7968-4376-8e45-ae2a96f8390b - status: 200 OK - code: 200 - duration: 97.82175ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 972d0913-2621-45c7-9bf4-c6813f8bfdb1 - status: 200 OK - code: 200 - duration: 151.085958ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a84f7997-f8c2-471f-850f-cf240fa1a3d9 - status: 200 OK - code: 200 - duration: 106.077917ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 64f6f0a8-712b-4933-a796-7791f6347e25 - status: 200 OK - code: 200 - duration: 82.047042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b260ba7b-ce79-400a-83ef-bc926a618080 - status: 200 OK - code: 200 - duration: 204.625542ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 44b72feb-7ebb-4f01-98a4-e79e1b32811d - status: 200 OK - code: 200 - duration: 103.728292ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52d68f29-8ceb-48b4-aa0e-8500d53160c4 - status: 200 OK - code: 200 - duration: 88.519292ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a47d83dd-ad24-4341-a64d-a87f6e1e5e69 - status: 200 OK - code: 200 - duration: 98.297375ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e87df83e-c715-4db0-858d-54661687eb2b - status: 200 OK - code: 200 - duration: 109.786416ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea763e36-9404-4a19-ac10-7e3ab4617887 - status: 200 OK - code: 200 - duration: 237.315833ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a00a7813-6966-48e3-adfa-538e493b0d18 - status: 200 OK - code: 200 - duration: 87.868416ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cebfb00b-a7c9-4a5b-bf04-48010505f338 - status: 200 OK - code: 200 - duration: 80.275708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7fe6ec8a-539c-4c89-bc2b-177d70b3355e - status: 200 OK - code: 200 - duration: 102.364375ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 19688977-875f-45c5-aa3a-ff7e9a496af0 - status: 200 OK - code: 200 - duration: 97.692584ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ec2f7da-2e56-4657-988f-82053d34f900 - status: 200 OK - code: 200 - duration: 84.617084ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3a38e73-7902-4765-8d1c-1efc75b55d54 - status: 200 OK - code: 200 - duration: 101.465042ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0fd3a29e-b68c-4980-9012-d456c39ff9a9 - status: 200 OK - code: 200 - duration: 277.527333ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c1e55fa2-e32e-4ed7-9624-7e7634fee048 - status: 200 OK - code: 200 - duration: 89.500958ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 953e64e4-cb9f-4c64-ab6d-ffca22ce82f2 - status: 200 OK - code: 200 - duration: 87.932583ms - - id: 160 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c566f5d6-f3b3-4e1a-a6c7-5a6f47d31ec2 - status: 200 OK - code: 200 - duration: 93.291625ms - - id: 161 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d5fde53f-8f06-4877-b793-f70ae2b6116c - status: 200 OK - code: 200 - duration: 87.429ms - - id: 162 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce5c80aa-3fa0-4164-894f-e0c8d4b68ce7 - status: 200 OK - code: 200 - duration: 209.660583ms - - id: 163 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 72fa7121-a255-4f27-a95f-ea7e230bf346 - status: 200 OK - code: 200 - duration: 78.43925ms - - id: 164 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5bec6576-8aa7-4157-947f-c1469bf17ca0 - status: 200 OK - code: 200 - duration: 87.76675ms - - id: 165 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6d627aee-f509-4f9e-8f81-2e279911dd46 - status: 200 OK - code: 200 - duration: 121.063625ms - - id: 166 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b1a96b16-f02e-4916-867c-543cdbc8eaef - status: 200 OK - code: 200 - duration: 91.300459ms - - id: 167 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dcc7de7c-e2ec-4a46-8c87-71b3e46b3121 - status: 200 OK - code: 200 - duration: 101.647875ms - - id: 168 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a22f20f1-c312-4ef7-bcba-fbc553e07620 - status: 200 OK - code: 200 - duration: 97.628125ms - - id: 169 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; 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=7b551a3d-c671-41e9-ba4e-ff63e7362846&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=57e0a467-ee81-4fb8-966e-938aa61e64bd&resource_type=mgdb_instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 546 - uncompressed: false - body: '{"ips":[{"address":"172.17.160.2/22","created_at":"2025-07-21T13:04:09.357035Z","id":"b3280e21-83c6-4d0e-a891-f21da6f0d394","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","mac_address":"02:00:00:19:F2:59","name":"57e0a467-ee81-4fb8-966e-938aa61e64bd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"d5c62204-1239-47db-b88c-97a3e6b06d38"},"tags":[],"updated_at":"2025-07-21T13:07:23.174658Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "546" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4004aaee-6732-40e8-a540-e30814de10c4 - status: 200 OK - code: 200 - duration: 45.686625ms - - id: 170 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e02854a-645d-4067-a2ab-c0be208bb8e5 - status: 200 OK - code: 200 - duration: 27.314166ms - - id: 171 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a12d6a19-d7fa-41b9-acd0-d6bd444efb80 - status: 200 OK - code: 200 - duration: 27.465708ms - - id: 172 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bf7bdf3b-2714-482b-b6c4-abc91043c497 - status: 200 OK - code: 200 - duration: 38.961625ms - - id: 173 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5a06c29-d22b-4c7b-a0dc-a71c2a34f6d8 - status: 200 OK - code: 200 - duration: 24.725125ms - - id: 174 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; 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=7b551a3d-c671-41e9-ba4e-ff63e7362846&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=57e0a467-ee81-4fb8-966e-938aa61e64bd&resource_type=mgdb_instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 546 - uncompressed: false - body: '{"ips":[{"address":"172.17.160.2/22","created_at":"2025-07-21T13:04:09.357035Z","id":"b3280e21-83c6-4d0e-a891-f21da6f0d394","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","mac_address":"02:00:00:19:F2:59","name":"57e0a467-ee81-4fb8-966e-938aa61e64bd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"d5c62204-1239-47db-b88c-97a3e6b06d38"},"tags":[],"updated_at":"2025-07-21T13:07:23.174658Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "546" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d2a6bad2-bec8-48e7-a575-7c74c8b1854a - status: 200 OK - code: 200 - duration: 119.119542ms - - id: 175 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c0e7fdd-327e-4dee-ad59-9efba29cbcc6 - status: 200 OK - code: 200 - duration: 21.542542ms - - id: 176 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7dbd7eb1-1f39-452e-a78e-58ab7f87c079 - status: 200 OK - code: 200 - duration: 21.093625ms - - id: 177 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14fc9b09-53f0-4d2d-8ca7-38cfc998c046 - status: 200 OK - code: 200 - duration: 24.192625ms - - id: 178 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; 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=7b551a3d-c671-41e9-ba4e-ff63e7362846&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=57e0a467-ee81-4fb8-966e-938aa61e64bd&resource_type=mgdb_instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 546 - uncompressed: false - body: '{"ips":[{"address":"172.17.160.2/22","created_at":"2025-07-21T13:04:09.357035Z","id":"b3280e21-83c6-4d0e-a891-f21da6f0d394","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","mac_address":"02:00:00:19:F2:59","name":"57e0a467-ee81-4fb8-966e-938aa61e64bd-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"d5c62204-1239-47db-b88c-97a3e6b06d38"},"tags":[],"updated_at":"2025-07-21T13:07:23.174658Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "546" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cf1a4ae9-b631-411a-ac80-26e0c983aefa - status: 200 OK - code: 200 - duration: 51.652083ms - - id: 179 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 767 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8b9a8e98-37d7-4551-94d6-69bd87051916 - status: 200 OK - code: 200 - duration: 93.008416ms - - id: 180 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/endpoints/72e08718-dd7c-40e9-a6af-f1a29ed76ebc - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0668193d-f6fe-4137-ad22-43cd4a6a973f - status: 204 No Content - code: 204 - duration: 202.011459ms - - id: 181 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 773 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[{"dns_record":"57e0a467-ee81-4fb8-966e-938aa61e64bd.7b551a3d-c671-41e9-ba4e-ff63e7362846.internal","id":"72e08718-dd7c-40e9-a6af-f1a29ed76ebc","port":27017,"private_network":{"private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846"}}],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 172e9618-0312-4c01-b255-5ff6a390d3d3 - status: 200 OK - code: 200 - duration: 82.546875ms - - id: 182 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"configuring","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 75dc2e39-97a2-4eab-8101-f9a5765186d3 - status: 200 OK - code: 200 - duration: 92.058625ms - - id: 183 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c2a7e593-befc-4dc1-bcbf-fe40a5089aa9 - status: 200 OK - code: 200 - duration: 83.085083ms - - id: 184 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 642f2fba-519b-4166-9138-8ee475b15ae4 - status: 200 OK - code: 200 - duration: 27.993416ms - - id: 185 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7a77b06-aa27-43ab-a081-f5c075a222a0 - status: 200 OK - code: 200 - duration: 90.448625ms - - id: 186 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1433ae50-91d9-4e5d-9757-90c72fc7f360 - status: 200 OK - code: 200 - duration: 26.00275ms - - id: 187 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1088 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.543631Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"fb31f129-95ca-484c-8103-0688fe85d204","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-07-21T12:45:04.543631Z","id":"17b1f1f5-dd57-4cf1-9a80-7432f513e1a3","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.92.0/22","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.543631Z","id":"1b301de5-281c-4312-a436-672b2b5979b1","private_network_id":"fb31f129-95ca-484c-8103-0688fe85d204","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:353c::/64","updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.543631Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1088" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 82a35856-21da-4f28-b54e-6f596d0ee797 - status: 200 OK - code: 200 - duration: 29.800208ms - - id: 188 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:04.635664Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","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-07-21T12:45:04.635664Z","id":"d5c62204-1239-47db-b88c-97a3e6b06d38","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.160.0/22","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:04.635664Z","id":"5ef38eda-d1ad-4d52-b47a-38b9a06f7ae4","private_network_id":"7b551a3d-c671-41e9-ba4e-ff63e7362846","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ee7d::/64","updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:04.635664Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b6973da4-92ae-493e-a844-e632147e16a1 - status: 200 OK - code: 200 - duration: 34.679417ms - - id: 189 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f1b9f8c-5e93-4706-bc4e-f4a46c2f6195 - status: 200 OK - code: 200 - duration: 75.100625ms - - id: 190 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3d5347e4-f3ae-4123-9465-41e96c03b866 - status: 200 OK - code: 200 - duration: 94.664625ms - - id: 191 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 003369d8-0f96-40a6-8560-b563983f08f4 - status: 200 OK - code: 200 - duration: 161.684292ms - - id: 192 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:07.736207Z","endpoints":[],"id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","name":"test-mongodb-private-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:07.963408Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 919ac594-4908-4fc6-9b36-f028c97d891e - status: 200 OK - code: 200 - duration: 93.177125ms - - id: 193 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fb31f129-95ca-484c-8103-0688fe85d204 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fcf07af8-5a1b-4818-a714-e75b8ed21576 - status: 204 No Content - code: 204 - duration: 6.018005083s - - id: 194 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b551a3d-c671-41e9-ba4e-ff63e7362846 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b9742aa4-f6a3-4905-b594-b4803c68f3c1 - status: 204 No Content - code: 204 - duration: 6.168089833s - - id: 195 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ae6c2056-38e8-45a8-aaa6-f4e778f12c3f - status: 404 Not Found - code: 404 - duration: 192.497209ms - - id: 196 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/57e0a467-ee81-4fb8-966e-938aa61e64bd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"57e0a467-ee81-4fb8-966e-938aa61e64bd","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e19a864-5405-4f97-9670-af2b62ebf0d6 - status: 404 Not Found - code: 404 - duration: 91.662417ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml deleted file mode 100644 index 36eec3b80..000000000 --- a/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml +++ /dev/null @@ -1,2604 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 319 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-volume-update1","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' - 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/v1/regions/fr-par/instances - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:26:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b07ad01-1953-4a17-b6e3-e855919d8d6d - status: 200 OK - code: 200 - duration: 515.73125ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:26:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe4a2ecd-b366-42df-8a71-a526d03b7ee8 - status: 200 OK - code: 200 - duration: 105.418375ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:26:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 65b3a868-c6ff-4126-a3da-163b4b39ab8d - status: 200 OK - code: 200 - duration: 165.637042ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:26:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e54e3ed8-0ea1-4a44-9b05-5f22ee784e69 - status: 200 OK - code: 200 - duration: 85.217166ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:26:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e437053-2089-47a0-adc0-10cd3464687f - status: 200 OK - code: 200 - duration: 430.954333ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:26:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8115b613-71e6-4225-b391-69283354f094 - status: 200 OK - code: 200 - duration: 114.134417ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:27:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ac51b223-819d-44c6-a7be-124875aeaf57 - status: 200 OK - code: 200 - duration: 111.690333ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:27:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cca556dc-52bd-48e4-8372-ad13d080b0d1 - status: 200 OK - code: 200 - duration: 85.966ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:27:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ac83625-2b80-4ab2-a1e5-6b472c326058 - status: 200 OK - code: 200 - duration: 161.870083ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:27:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5b279847-a1d5-46e8-8a66-7ff8917d4eab - status: 200 OK - code: 200 - duration: 175.376458ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:27:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d4e4e50-78bc-40f0-90f1-19f9e59ec1e1 - status: 200 OK - code: 200 - duration: 77.324084ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:27:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e2992d2f-d6e9-4f58-9a3f-da7abe45cde5 - status: 200 OK - code: 200 - duration: 94.726833ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:28:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 71c9b03c-b6f6-4902-97c4-c1f8a3bd993f - status: 200 OK - code: 200 - duration: 212.947875ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:28:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 75de767f-36ff-475d-b1f4-bd4198fe731a - status: 200 OK - code: 200 - duration: 97.900167ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:28:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a8bc722-99d2-48c4-8216-921cf2e03bc6 - status: 200 OK - code: 200 - duration: 116.390791ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:28:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 44932bce-5552-485f-bc04-58197bdb9af6 - status: 200 OK - code: 200 - duration: 294.382792ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:28:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4190aa61-9808-411f-9ed4-74126093b739 - status: 200 OK - code: 200 - duration: 77.553625ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:28:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a63786b-97a8-4f2c-885b-4615957a5fe0 - status: 200 OK - code: 200 - duration: 253.878ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:29:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d080bd4-b7b3-4214-a3bc-15f77caf1a6d - status: 200 OK - code: 200 - duration: 80.809584ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:29:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1dd8c937-a809-44a3-a8b3-b1594bf0183e - status: 200 OK - code: 200 - duration: 180.256584ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:29:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1c2c1bb8-2cf2-4e45-a511-580944c4fa9a - status: 200 OK - code: 200 - duration: 199.909375ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:29:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 446ad2af-d84a-4d95-8ec8-d5fb912c51c4 - status: 200 OK - code: 200 - duration: 102.095333ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:29:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 22e2f1d5-2044-4159-ab9b-677afeda5d77 - status: 200 OK - code: 200 - duration: 134.462625ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:29:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 67790357-065b-469f-8674-f4c5cef8bf27 - status: 200 OK - code: 200 - duration: 201.078292ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 05ee1f06-6a94-4e69-8892-4bc564f6cf42 - status: 200 OK - code: 200 - duration: 157.344125ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:30:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d978bf1-b2aa-4ce6-8bdd-f65e92a30f48 - status: 200 OK - code: 200 - duration: 98.758333ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:30:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e74250fe-32a3-41ae-b7f2-d1aae38b86a1 - status: 200 OK - code: 200 - duration: 98.404958ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:30:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be30dbf7-dfae-4906-bcfa-e4f5d4cb9b2f - status: 200 OK - code: 200 - duration: 121.128666ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:30:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 81a5f873-d383-4f5d-930b-30d91f9568d7 - status: 200 OK - code: 200 - duration: 99.24175ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:30:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8adb8c17-c62f-47f8-96fa-918d48134e31 - status: 200 OK - code: 200 - duration: 87.501875ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 142c9f8a-e2cd-4d30-8ace-3229d7437b76 - status: 200 OK - code: 200 - duration: 100.24225ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9ee1c0f-945e-426a-b6b9-de11f2d4a1b2 - status: 200 OK - code: 200 - duration: 170.929083ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 97e106a0-5893-4f2f-9290-3438a862cf34 - status: 200 OK - code: 200 - duration: 83.160291ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "689" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9986eab1-ab62-4c6e-a440-1e4b2591b6cd - status: 200 OK - code: 200 - duration: 179.478625ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 682 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "682" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 49552166-d8c5-4524-962b-ad1bd7ae073c - status: 200 OK - code: 200 - duration: 107.460333ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 682 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "682" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b3ea388d-3252-47e7-b274-55abbc59499e - status: 200 OK - code: 200 - duration: 102.032875ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 682 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "682" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe2f79b2-54b8-4414-82ac-52d6962d76b4 - status: 200 OK - code: 200 - duration: 30.328916ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 682 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "682" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7461b287-f357-418c-b7f9-ded589f40488 - status: 200 OK - code: 200 - duration: 46.082084ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 682 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "682" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dedd53e1-6eed-417d-a496-77e1cc3f94bd - status: 200 OK - code: 200 - duration: 76.405375ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 33 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"volume_size_bytes":10000000000}' - 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/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd/upgrade - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 690 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"initializing","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "690" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ca32eba7-ca0a-4d23-9725-ebe11781b11c - status: 200 OK - code: 200 - duration: 229.465417ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 690 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"initializing","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "690" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:31:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 422f3364-8bbc-4245-aad7-b1081d38e1ea - status: 200 OK - code: 200 - duration: 97.988584ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 690 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"initializing","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "690" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 930a0fd8-6338-49b8-ad6b-589d282dd088 - status: 200 OK - code: 200 - duration: 235.841ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f959e27b-a71f-4238-969c-0fcd7d437ae5 - status: 200 OK - code: 200 - duration: 97.666708ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 957f25c5-3b84-438f-af4c-ce96c7839891 - status: 200 OK - code: 200 - duration: 30.709416ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ca561497-fdf9-4038-9bbf-1704c5c41865 - status: 200 OK - code: 200 - duration: 73.5715ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e49e3e08-aa3e-4919-bbbc-b01fa7283bf1 - status: 200 OK - code: 200 - duration: 28.959208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 667044f7-8112-478d-8c63-3a5fde7d376b - status: 200 OK - code: 200 - duration: 27.865209ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c29736c1-ac08-4988-88fb-f8ea20f72283 - status: 200 OK - code: 200 - duration: 111.049083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 569 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "569" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d1fa8111-e7a2-4119-b3d0-e05ceab8b280 - status: 200 OK - code: 200 - duration: 225.137167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 686 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "686" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 51c1072b-dfdd-425a-9953-ad185ca48260 - status: 200 OK - code: 200 - duration: 24.140916ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 686 - uncompressed: false - body: '{"created_at":"2025-07-21T12:26:12.604741Z","endpoints":[{"dns_record":"f88bb897-9af3-4daf-a276-95d473221fcd.mgdb.fr-par.scw.cloud","id":"4c7d53db-e935-4a83-b4fe-6eee9e85c1d1","port":27017,"public_network":{}}],"id":"f88bb897-9af3-4daf-a276-95d473221fcd","name":"test-mongodb-volume-update1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:26:12.752251Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "686" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e102a088-8a82-4ad2-8da2-791034d1a07d - status: 200 OK - code: 200 - duration: 90.687125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"f88bb897-9af3-4daf-a276-95d473221fcd","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aea9f6bf-ec43-4142-be9e-b85c26f00a27 - status: 404 Not Found - code: 404 - duration: 26.282542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f88bb897-9af3-4daf-a276-95d473221fcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"f88bb897-9af3-4daf-a276-95d473221fcd","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:32:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 56341480-5beb-43d7-8ba2-97e3af6cc58f - status: 404 Not Found - code: 404 - duration: 20.770917ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-with-public-network.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-with-public-network.cassette.yaml deleted file mode 100644 index ae2356ecf..000000000 --- a/internal/services/mongodb/testdata/mongo-db-instance-with-public-network.cassette.yaml +++ /dev/null @@ -1,7649 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 148 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1071 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:29.888Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a8418690-5bff-4330-b3bd-287b797553f3","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-07-21T12:45:29.888Z","id":"20bc2f7d-3156-4877-8c73-277513e585b9","private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:29.888Z","id":"9642cb67-f84e-4b72-ace7-76271e8dad2a","private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:a52d::/64","updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7fd9a425-db71-4c6e-a934-b5ab62e7dfcb - status: 200 OK - code: 200 - duration: 1.375172125s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a8418690-5bff-4330-b3bd-287b797553f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1071 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:29.888Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a8418690-5bff-4330-b3bd-287b797553f3","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-07-21T12:45:29.888Z","id":"20bc2f7d-3156-4877-8c73-277513e585b9","private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:29.888Z","id":"9642cb67-f84e-4b72-ace7-76271e8dad2a","private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:a52d::/64","updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9834cc2-c3e1-4a9e-8192-26e2318303ce - status: 200 OK - code: 200 - duration: 28.93875ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 401 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-public-network","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"public_network":{}}]}' - 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/v1/regions/fr-par/instances - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4860ce65-e4d2-4d81-af9c-5ae4c9de93fb - status: 200 OK - code: 200 - duration: 441.085416ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 454757e2-b187-4057-a697-301ac4ec7665 - status: 200 OK - code: 200 - duration: 137.774375ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 38381431-fa2b-41b7-9e68-e0ac40d997d0 - status: 200 OK - code: 200 - duration: 88.314709ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:45:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 010d3ca5-7289-4e24-b7b2-109447713ec0 - status: 200 OK - code: 200 - duration: 192.996875ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 47c9901a-edbe-4e89-88ca-b3a7c202ef1b - status: 200 OK - code: 200 - duration: 117.507458ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cbdb01d1-1c69-4a0b-8dba-d21928eb8796 - status: 200 OK - code: 200 - duration: 105.370792ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e56d52be-8807-4af7-a81d-c117cd30268a - status: 200 OK - code: 200 - duration: 104.840708ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 00ff7e49-31c4-4538-9f34-4fc3afdcda95 - status: 200 OK - code: 200 - duration: 113.514583ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9db99c9b-e61a-459f-b550-2672e06d543a - status: 200 OK - code: 200 - duration: 181.954291ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:46:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 21be75b3-5f7c-4856-a438-299c03fb9a4e - status: 200 OK - code: 200 - duration: 90.762041ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe5a7c99-2327-4213-90a8-369121b4e6da - status: 200 OK - code: 200 - duration: 99.642667ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b81c75b-7542-4b61-a9ec-49ec2b5b9c22 - status: 200 OK - code: 200 - duration: 103.666792ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8fcfeca2-662b-47c7-99ea-603e49a19514 - status: 200 OK - code: 200 - duration: 103.942917ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fd426f99-0986-4355-b0a7-b32d93fcad09 - status: 200 OK - code: 200 - duration: 93.170958ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 515cf733-66f3-4e62-930a-fd3869596f8b - status: 200 OK - code: 200 - duration: 87.102292ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:47:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8672a36b-63ce-470c-b804-c2b275208b8c - status: 200 OK - code: 200 - duration: 170.626458ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - af006c57-832d-407f-bdd8-cdcde5b5f786 - status: 200 OK - code: 200 - duration: 83.335459ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b6321c0f-2f30-486f-a1fb-99bba569fd9a - status: 200 OK - code: 200 - duration: 97.518791ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2371232f-2ff4-44c7-94d3-9d3513454d88 - status: 200 OK - code: 200 - duration: 100.681ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 36447981-812a-4312-af26-cc4043ed2b69 - status: 200 OK - code: 200 - duration: 199.521333ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - beb1a7ad-b318-4bf2-b94d-5b0e7c6993ee - status: 200 OK - code: 200 - duration: 97.021917ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:48:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 146bcf95-b856-468b-9005-14aa7b988881 - status: 200 OK - code: 200 - duration: 208.807416ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c7e66c7-2eac-417a-8354-1631616bd935 - status: 200 OK - code: 200 - duration: 214.469375ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b4ce499c-8a35-4eb1-8490-b8c735a06bc5 - status: 200 OK - code: 200 - duration: 90.893375ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ab5cbd93-6426-4d5f-81bc-8dc104c5caff - status: 200 OK - code: 200 - duration: 414.527375ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2cb1869f-240f-4b63-8e10-9c2aef566a13 - status: 200 OK - code: 200 - duration: 86.379ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e794f8b6-a04a-482b-bab7-ba6cb3aecb23 - status: 200 OK - code: 200 - duration: 177.636292ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:49:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e88e6295-974b-443d-a66f-d552b7ace38c - status: 200 OK - code: 200 - duration: 73.015667ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ce71229-cc4b-4feb-a5f9-6bf615bacaee - status: 200 OK - code: 200 - duration: 103.348292ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5ba00f50-a53f-4462-b5ff-cf2a5b293359 - status: 200 OK - code: 200 - duration: 88.512208ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 79e61631-9d63-4b26-a741-2b43748e70d0 - status: 200 OK - code: 200 - duration: 306.942166ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e5202cd-e299-4d20-984f-bf6e1407f47e - status: 200 OK - code: 200 - duration: 86.172667ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 584f1ce2-184a-4d76-a8a9-3ef5eb218548 - status: 200 OK - code: 200 - duration: 89.391125ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:50:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 005ddf61-0e2f-49b1-adb4-f629da35ac74 - status: 200 OK - code: 200 - duration: 217.678166ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6329ca14-f121-4cde-bd4a-2ca24aa1b877 - status: 200 OK - code: 200 - duration: 87.978875ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 868fd025-75e1-4be0-a08f-a6b6a0d42fa5 - status: 200 OK - code: 200 - duration: 86.278958ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 65654a5d-4740-44ed-99e3-cb3c639189f8 - status: 200 OK - code: 200 - duration: 81.938083ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 796851d7-2f8e-4fc8-b0fb-5c8338dea642 - status: 200 OK - code: 200 - duration: 85.553167ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b9a58f2-b2e6-4c34-b7de-b39cf0f771d6 - status: 200 OK - code: 200 - duration: 100.109709ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:51:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ef907930-64c1-4dd0-98c2-d1e6370bab4c - status: 200 OK - code: 200 - duration: 254.390167ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 20976ee0-5afc-47d3-b3d8-acd3e7f31370 - status: 200 OK - code: 200 - duration: 90.866375ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2adfc02f-895d-4af2-b557-3820e8af4f66 - status: 200 OK - code: 200 - duration: 108.903667ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8aeb74a-534b-433e-aa9b-5d062d8d8fb2 - status: 200 OK - code: 200 - duration: 90.780167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a0078375-1894-4c9d-8161-f2bdb865596c - status: 200 OK - code: 200 - duration: 98.2905ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0afb863f-794d-4020-b234-673336508305 - status: 200 OK - code: 200 - duration: 83.667583ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:52:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea7735cb-e4da-4329-8f5e-187eb38806c6 - status: 200 OK - code: 200 - duration: 141.629541ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 857a2b0f-a355-40be-b67a-8c926b9c9a38 - status: 200 OK - code: 200 - duration: 109.484541ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cbc4c826-2b01-4cec-9df0-f89d26510c8b - status: 200 OK - code: 200 - duration: 79.452375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6bfd6c44-64d7-4777-b9b0-9ecffc39f83f - status: 200 OK - code: 200 - duration: 89.222542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 76809f99-56d4-4e81-9708-f3bb6f702931 - status: 200 OK - code: 200 - duration: 101.102208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4d3fbdf-b3f8-4b60-bba2-2d648ca713bf - status: 200 OK - code: 200 - duration: 105.477417ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6bb64511-a5b8-4476-af44-6eefcb1437b4 - status: 200 OK - code: 200 - duration: 79.370083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1c5b6f09-91d2-4e3d-b8ac-a1f2ed117fae - status: 200 OK - code: 200 - duration: 79.801042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8ddd625-046d-408d-b188-eddd3146edae - status: 200 OK - code: 200 - duration: 282.677708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b3adef08-725b-4a13-b925-1b8cf4eca76e - status: 200 OK - code: 200 - duration: 103.023916ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b921fad-4bba-4dbb-8177-b5257c9b62c7 - status: 200 OK - code: 200 - duration: 92.324417ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e97d3315-e1a7-486b-a353-51988f36b3c1 - status: 200 OK - code: 200 - duration: 83.814666ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8054ef2b-d304-4c86-b67e-3d6a79d6c71b - status: 200 OK - code: 200 - duration: 169.862417ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c86b23e9-7beb-46d6-8d58-c7517fb5cdd2 - status: 200 OK - code: 200 - duration: 98.517084ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 12c8e9a0-786b-46f7-b033-426b59c9a23a - status: 200 OK - code: 200 - duration: 81.64525ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6f06b20-46c5-4296-83cc-3ea34dab6349 - status: 200 OK - code: 200 - duration: 90.304125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6d7746d5-e99b-4271-9b5e-0852ebfb6636 - status: 200 OK - code: 200 - duration: 153.49975ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 606482c6-330d-4a2e-b632-cb79a0364942 - status: 200 OK - code: 200 - duration: 81.736667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:55:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5d038be0-70ef-4f75-a6e0-1a6b9e81d6f7 - status: 200 OK - code: 200 - duration: 94.240417ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5cce8bc6-4647-497e-a2b4-6aaf3a2ad243 - status: 200 OK - code: 200 - duration: 95.487792ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 53be92ba-0aa3-4587-9db9-bbdc6e18c2c7 - status: 200 OK - code: 200 - duration: 201.968792ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dbcc23c5-0b70-4966-a116-c521160de1e6 - status: 200 OK - code: 200 - duration: 84.899958ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff49659e-a5fd-47e6-99bc-06466c507017 - status: 200 OK - code: 200 - duration: 97.214084ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 34b72999-8a8c-469b-872c-579ece642a95 - status: 200 OK - code: 200 - duration: 115.511958ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:56:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 46346b3b-9f81-429d-ad90-bdc8882cfdba - status: 200 OK - code: 200 - duration: 111.180583ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f9810b12-4db4-47e0-8c7a-ab7d15d5b0b5 - status: 200 OK - code: 200 - duration: 110.863083ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04b88bbb-ce20-4ada-a1bb-293d85f99f06 - status: 200 OK - code: 200 - duration: 89.458125ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2b22ff67-520e-489f-8fa5-0dbe64a06592 - status: 200 OK - code: 200 - duration: 99.8495ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a1482302-6791-4cdd-919f-784587d27c91 - status: 200 OK - code: 200 - duration: 190.707125ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d9d26064-2241-4ff1-b2d6-1eb6802f7764 - status: 200 OK - code: 200 - duration: 157.083583ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b02281d8-f3f5-4a3c-9d0f-5496981db7e3 - status: 200 OK - code: 200 - duration: 89.201083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 53abbcd8-1a13-4429-82d8-ae64e64af035 - status: 200 OK - code: 200 - duration: 93.556167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 62f6b8ca-8fdc-4db9-9c80-473b0205a016 - status: 200 OK - code: 200 - duration: 202.42775ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c218eb3d-5184-4611-a4f3-42d5fad4e181 - status: 200 OK - code: 200 - duration: 73.487334ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b878272-d00a-4c0f-b645-2b2f3ea8dfd5 - status: 200 OK - code: 200 - duration: 107.86125ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:58:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dd44f775-8110-4063-8670-bfb23399aee8 - status: 200 OK - code: 200 - duration: 89.534459ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 944e2373-cd1d-4e2d-a14f-641161be0d17 - status: 200 OK - code: 200 - duration: 85.033791ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 638af201-0fe7-452d-ab72-584b9039750a - status: 200 OK - code: 200 - duration: 149.489166ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c104d155-7473-4256-8d20-e3c98dc219a3 - status: 200 OK - code: 200 - duration: 89.853ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 61fd70a1-bfaf-4c54-9d12-7a904ba4f920 - status: 200 OK - code: 200 - duration: 166.2675ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 737773ce-aea3-4e6e-9e89-bb54ba0b0272 - status: 200 OK - code: 200 - duration: 197.006333ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 12:59:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8380c02d-ffe1-4669-9d12-365ea408773e - status: 200 OK - code: 200 - duration: 90.743833ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5ad0939c-0c6b-42bf-bc47-06caf5f0017f - status: 200 OK - code: 200 - duration: 229.7025ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9206cfd4-c78d-431d-b783-d25b3cd41b40 - status: 200 OK - code: 200 - duration: 103.732583ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 99ae10ba-8ff2-4ab7-ba02-99e7548d74dc - status: 200 OK - code: 200 - duration: 103.460416ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d953fb1-1416-46ff-b23c-1941c9faefea - status: 200 OK - code: 200 - duration: 97.816959ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 20774449-b62a-45f1-9ca0-f5b50ad8230c - status: 200 OK - code: 200 - duration: 88.248875ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:00:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fdfe0bf0-9d70-4cde-90c6-7d2999e7ea6d - status: 200 OK - code: 200 - duration: 201.456042ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3fc95292-4b04-4837-89ab-29ced6f4600b - status: 200 OK - code: 200 - duration: 85.066708ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e4e987d3-2e28-4241-950f-14fd5e7e8380 - status: 200 OK - code: 200 - duration: 79.958667ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1cdc6dce-2eed-456e-8329-50c60efc8943 - status: 200 OK - code: 200 - duration: 232.061083ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fd0f6f69-82b3-4b6a-8684-e89bf4b86e1f - status: 200 OK - code: 200 - duration: 89.961833ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b60ab07-5265-45b1-b837-cb278116ad53 - status: 200 OK - code: 200 - duration: 98.689ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:01:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c7165bf-95b5-4961-8c05-1b32c0b40135 - status: 200 OK - code: 200 - duration: 85.100958ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 341a758c-29bd-4f6a-88de-c50be77b447f - status: 200 OK - code: 200 - duration: 75.74375ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ebf0e3ba-9bd9-49ea-8d8f-7cb13c3ea624 - status: 200 OK - code: 200 - duration: 88.042166ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dca327e2-7240-4a19-96ef-0f1d259d4b29 - status: 200 OK - code: 200 - duration: 79.23075ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cc0b796f-8ab0-4ec6-9b7b-516c78a03ed1 - status: 200 OK - code: 200 - duration: 90.627083ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a7fdd1ae-a717-405c-a9f3-ddb15deec132 - status: 200 OK - code: 200 - duration: 82.930833ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:02:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98ffcc32-a821-491f-b85f-2e02aa21f503 - status: 200 OK - code: 200 - duration: 88.364042ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de68d2bf-9473-4d76-b235-f4b36a63af7c - status: 200 OK - code: 200 - duration: 80.778125ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6cec0b24-587d-44d2-b32a-7a7c3fdcf2cb - status: 200 OK - code: 200 - duration: 105.329583ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1d61c43-273c-40dc-9e0e-eaf649ca2434 - status: 200 OK - code: 200 - duration: 209.832583ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b80c97a6-1f74-4381-98ed-2a2777ac8d4d - status: 200 OK - code: 200 - duration: 84.662666ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e442274e-a9fe-479d-87d6-c36007ffe6d3 - status: 200 OK - code: 200 - duration: 95.608083ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:03:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98daaa8f-7b0c-40b0-8ff1-560de9bbf5c4 - status: 200 OK - code: 200 - duration: 88.695459ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17c4e76a-28a4-48a0-a862-779bed12f4eb - status: 200 OK - code: 200 - duration: 81.502542ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d108940-d41a-4a80-83d9-2014d30c2b0e - status: 200 OK - code: 200 - duration: 164.405875ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 049ad7eb-03d4-41e8-91c1-a18da504fdcd - status: 200 OK - code: 200 - duration: 95.262958ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 11c17575-54fb-471e-bbae-34f55dd6ea40 - status: 200 OK - code: 200 - duration: 121.556125ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 397fa827-53bc-44b4-8a6d-d7570131ca73 - status: 200 OK - code: 200 - duration: 231.400167ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:04:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0427d4b4-8647-4dcc-b3fc-2fb6a5453307 - status: 200 OK - code: 200 - duration: 84.536458ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b147618-fd3f-41f2-919a-9f5bd5d97cac - status: 200 OK - code: 200 - duration: 83.6475ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b2e07240-883d-4c51-9798-894c83f4b5fe - status: 200 OK - code: 200 - duration: 87.063917ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c443fb2-e0f2-42e7-b28d-8025eedbdd2f - status: 200 OK - code: 200 - duration: 175.751083ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cf995342-2c08-4c60-908e-3fae563a159d - status: 200 OK - code: 200 - duration: 89.811667ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 020b1ec9-b3a1-4df8-9830-48d984767dc9 - status: 200 OK - code: 200 - duration: 85.990083ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:05:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8e0ba58c-de57-4e58-aedf-1c7cfad10f9b - status: 200 OK - code: 200 - duration: 107.35725ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 515d205b-5fce-4401-9a66-abaf8d6e72f6 - status: 200 OK - code: 200 - duration: 85.455ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 53c7b048-8b01-41c2-b733-bce2e038132a - status: 200 OK - code: 200 - duration: 82.623625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cab48815-d077-41fc-b317-b00a9fce83c0 - status: 200 OK - code: 200 - duration: 80.927083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd61596b-f787-4e70-b344-c47b964bb329 - status: 200 OK - code: 200 - duration: 82.256333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a663daaa-4d19-44a8-8848-9ddd8211a69c - status: 200 OK - code: 200 - duration: 247.870209ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:06:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 44b906a6-95f9-45eb-b04b-2c04e00fd248 - status: 200 OK - code: 200 - duration: 447.044167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 33578ec1-dba1-4ba4-b2f1-f56d61b69a63 - status: 200 OK - code: 200 - duration: 99.448167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7616c5a-8587-4cc1-8ca6-dc4c687bfbde - status: 200 OK - code: 200 - duration: 92.716791ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b3faa15-760f-43a5-ba9d-44d6f8c3d1e8 - status: 200 OK - code: 200 - duration: 224.496709ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e87f6d21-7630-4b5c-ac49-d1ad3a7bf9cb - status: 200 OK - code: 200 - duration: 80.76575ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e57c86a-d130-4eb4-ad95-fd9a2dce5376 - status: 200 OK - code: 200 - duration: 92.232084ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:07:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 24cc2726-a3d0-44f0-bedf-c83a6acb96ca - status: 200 OK - code: 200 - duration: 106.361542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b868fd9e-b6d9-422d-9d03-4cf1094d5ef7 - status: 200 OK - code: 200 - duration: 91.349542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 10ac971f-6977-4ab6-8841-eb47f71d4493 - status: 200 OK - code: 200 - duration: 208.783125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ae4bd91-edd7-4b15-9b10-8d64bed9809b - status: 200 OK - code: 200 - duration: 100.007333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c05e3305-0797-40da-a48d-d6d10e7ee279 - status: 200 OK - code: 200 - duration: 80.422166ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 930 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d2287016-502c-444a-9dcb-3c0e777a3d26 - status: 200 OK - code: 200 - duration: 124.262833ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 923 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "923" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e79a558d-dfb7-4da6-8bf9-5561d1a04328 - status: 200 OK - code: 200 - duration: 87.980166ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 923 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "923" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fa903e61-a180-46c4-ba11-b2252930cda4 - status: 200 OK - code: 200 - duration: 92.316416ms - - 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.0; 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=a8418690-5bff-4330-b3bd-287b797553f3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b00b7c48-7358-4aa1-bc36-d10a7ed59ffe&resource_type=mgdb_instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 546 - uncompressed: false - body: '{"ips":[{"address":"172.17.180.2/22","created_at":"2025-07-21T12:58:35.321304Z","id":"1ddf5686-f1e4-4afd-a44e-14dca4b1bf34","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","mac_address":"02:00:00:1B:F8:11","name":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"20bc2f7d-3156-4877-8c73-277513e585b9"},"tags":[],"updated_at":"2025-07-21T13:07:14.585043Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "546" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 381e4dad-ce93-4ad7-b934-f5f811aa03f0 - status: 200 OK - code: 200 - duration: 51.974042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 923 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "923" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d39e364-5caa-40f6-8e09-aeb607677167 - status: 200 OK - code: 200 - duration: 27.060459ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a8418690-5bff-4330-b3bd-287b797553f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1071 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:29.888Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a8418690-5bff-4330-b3bd-287b797553f3","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-07-21T12:45:29.888Z","id":"20bc2f7d-3156-4877-8c73-277513e585b9","private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-07-21T12:45:29.888Z","id":"9642cb67-f84e-4b72-ace7-76271e8dad2a","private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:a52d::/64","updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-07-21T12:45:29.888Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - caff666b-951a-4222-97de-8e1e307e4c82 - status: 200 OK - code: 200 - duration: 25.042125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 923 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "923" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 37ab0577-e6dc-4c57-b0b5-22fc792bc1fb - status: 200 OK - code: 200 - duration: 99.414542ms - - 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.0; 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=a8418690-5bff-4330-b3bd-287b797553f3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b00b7c48-7358-4aa1-bc36-d10a7ed59ffe&resource_type=mgdb_instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 546 - uncompressed: false - body: '{"ips":[{"address":"172.17.180.2/22","created_at":"2025-07-21T12:58:35.321304Z","id":"1ddf5686-f1e4-4afd-a44e-14dca4b1bf34","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","mac_address":"02:00:00:1B:F8:11","name":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe-0","type":"mgdb_instance"},"reverses":[],"source":{"subnet_id":"20bc2f7d-3156-4877-8c73-277513e585b9"},"tags":[],"updated_at":"2025-07-21T13:07:14.585043Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "546" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:08:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e152416-a566-4a39-a8a2-0f4ffbca0392 - status: 200 OK - code: 200 - duration: 50.613958ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 923 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "923" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dee8ab5c-c053-474d-9229-ffc362dc6230 - status: 200 OK - code: 200 - duration: 106.676291ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 809 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "809" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 33594dbb-3591-4a4a-866d-f426eb90c5aa - status: 200 OK - code: 200 - duration: 225.161375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 926 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "926" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7a9ddaa9-fccc-4af9-8346-af8ab9aabec6 - status: 200 OK - code: 200 - duration: 103.306625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 926 - uncompressed: false - body: '{"created_at":"2025-07-21T12:45:30.717704Z","endpoints":[{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.a8418690-5bff-4330-b3bd-287b797553f3.internal","id":"60850196-5241-449d-8439-63d726d82527","port":27017,"private_network":{"private_network_id":"a8418690-5bff-4330-b3bd-287b797553f3"}},{"dns_record":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe.mgdb.fr-par.scw.cloud","id":"4fb9fcd0-da58-4747-ac87-759844239f79","port":27017,"public_network":{}}],"id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","name":"test-mongodb-public-network","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T12:45:30.933165Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "926" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e4696312-fc06-4879-9b35-a94d5327a9ad - status: 200 OK - code: 200 - duration: 88.825625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d129c12c-53c2-482c-88b3-4280f654f3e6 - status: 404 Not Found - code: 404 - duration: 30.977792ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a8418690-5bff-4330-b3bd-287b797553f3 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7379782-4d2d-4aa0-b69d-c52c83d95625 - status: 204 No Content - code: 204 - duration: 2.295520208s - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b00b7c48-7358-4aa1-bc36-d10a7ed59ffe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"b00b7c48-7358-4aa1-bc36-d10a7ed59ffe","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:09:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c30a0b7d-1038-4e71-8911-ed7807b8bf5d - status: 404 Not Found - code: 404 - duration: 19.809292ms diff --git a/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml deleted file mode 100644 index 3a018259f..000000000 --- a/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml +++ /dev/null @@ -1,7847 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 313 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' - 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/v1/regions/fr-par/instances - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b88aedb5-4e85-465b-ac0d-577835bfe7c1 - status: 200 OK - code: 200 - duration: 766.428208ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c89e785a-35a3-4b69-a094-038eef59c392 - status: 200 OK - code: 200 - duration: 95.104834ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ef50cb39-3f5b-4816-8c64-ff500384b763 - status: 200 OK - code: 200 - duration: 90.283667ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 32f83019-d25d-43c6-979a-fc230bf5e8d9 - status: 200 OK - code: 200 - duration: 82.457417ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 120597d0-9f56-463e-938e-3c8781e8a8d7 - status: 200 OK - code: 200 - duration: 84.404625ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4036895f-e741-4c4d-a333-33e3e2b4acd6 - status: 200 OK - code: 200 - duration: 201.059ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ad6814d-2edb-4aff-b5e7-d29aa9a69d13 - status: 200 OK - code: 200 - duration: 78.623417ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a12701a7-dd80-4137-8407-d02e3b9a8473 - status: 200 OK - code: 200 - duration: 95.224ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 88789376-0ec6-417c-9803-0a40b9665e6d - status: 200 OK - code: 200 - duration: 82.186667ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 54b1448c-43eb-490b-b249-990b33d9f6df - status: 200 OK - code: 200 - duration: 186.22425ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17c11526-1792-465d-a7c2-92433b385b8b - status: 200 OK - code: 200 - duration: 213.591417ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 25f84f3a-a022-487e-9022-1e532bb950e3 - status: 200 OK - code: 200 - duration: 80.770167ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 21b2ff5e-8055-4d0c-b35d-a28282a14b78 - status: 200 OK - code: 200 - duration: 153.869083ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a88a1d0e-e260-4fe5-aa66-9af2be67fed7 - status: 200 OK - code: 200 - duration: 102.318417ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff9cddc0-cb9d-47b1-b87c-4612e546635e - status: 200 OK - code: 200 - duration: 78.596291ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da43b59b-6fed-4633-8811-f7ad64598bd7 - status: 200 OK - code: 200 - duration: 193.548458ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5f254148-aeca-4c62-ab9c-e3722ea8c840 - status: 200 OK - code: 200 - duration: 261.660625ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b094ed1c-af70-49f8-9136-2c5c428d4292 - status: 200 OK - code: 200 - duration: 131.430083ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8007aa37-094a-4c27-a88c-67de749c4863 - status: 200 OK - code: 200 - duration: 89.024583ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 696d9891-4512-469d-a9fe-75860f5bfeb2 - status: 200 OK - code: 200 - duration: 89.3525ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f99e96ed-bef9-4c6b-badc-515a452e9cdb - status: 200 OK - code: 200 - duration: 143.208208ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04cefb27-a86c-4e2b-ac5a-cd745b0e44a3 - status: 200 OK - code: 200 - duration: 97.337666ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 367817a5-c729-4e22-a50e-1c0ad3abe616 - status: 200 OK - code: 200 - duration: 73.059375ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2db0c6fd-a2dc-4e31-9726-439f2c894a01 - status: 200 OK - code: 200 - duration: 305.177541ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b0eb88c-ae86-4cfe-abb0-89d28d9c7ed6 - status: 200 OK - code: 200 - duration: 85.062833ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 878d9610-6653-4059-a9aa-5b2fa76d4968 - status: 200 OK - code: 200 - duration: 199.864042ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6cff6694-acf8-473e-bdc3-4d59cf85b342 - status: 200 OK - code: 200 - duration: 196.063125ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9b3ef62-0d12-4033-8d15-126ccadd01c5 - status: 200 OK - code: 200 - duration: 229.474042ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 41f546c3-d830-4342-b54f-327c979dfbe1 - status: 200 OK - code: 200 - duration: 83.050583ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b1b9bb5-e5d5-40f9-80c4-7d274b57d92c - status: 200 OK - code: 200 - duration: 98.169042ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52395da5-bc0d-4d51-a3a6-96e52d55820d - status: 200 OK - code: 200 - duration: 132.156334ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 282b1789-e89a-46a0-97be-15e522e15eee - status: 200 OK - code: 200 - duration: 89.076208ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 13cc2e91-b93c-4493-aa92-301de646bb51 - status: 200 OK - code: 200 - duration: 155.480833ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c3b102f-7fa3-4587-b1e3-99425538b061 - status: 200 OK - code: 200 - duration: 87.446208ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c0c2fd1-a633-46d5-8cdd-b79bdf052748 - status: 200 OK - code: 200 - duration: 100.839166ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fd1a30f6-9ea4-4565-86f4-fe01fc9cdf91 - status: 200 OK - code: 200 - duration: 208.193417ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7fb72b06-8383-4d76-9227-10c3ec83a79b - status: 200 OK - code: 200 - duration: 83.054542ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74a7a382-6507-4885-ab60-3aff98f5f2cd - status: 200 OK - code: 200 - duration: 85.904ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da05a38b-1f05-4ad6-9a3e-0b93f8be4618 - status: 200 OK - code: 200 - duration: 106.997917ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e1006c3f-f203-44b0-ae42-7053b487df83 - status: 200 OK - code: 200 - duration: 282.283833ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cd90efd4-d6fe-406e-bd0e-299e73d461ec - status: 200 OK - code: 200 - duration: 83.770916ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7a7dd37c-712d-474c-9a16-2008d1d24f49 - status: 200 OK - code: 200 - duration: 139.200875ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d071d9e-60ad-4d4f-953a-0e16b263cb47 - status: 200 OK - code: 200 - duration: 82.687083ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1781db93-beef-42b3-8f64-439004ed0588 - status: 200 OK - code: 200 - duration: 75.077ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 29bd4988-caa3-41fb-a8da-abeaf32cab03 - status: 200 OK - code: 200 - duration: 183.009583ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 50afac45-77d6-4a32-85d4-591af7a3ea69 - status: 200 OK - code: 200 - duration: 95.633917ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b6a7e1e0-7bee-4296-9288-c3479ec9464a - status: 200 OK - code: 200 - duration: 173.660375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be445fe2-4056-4fed-b4bc-6a991da4c62f - status: 200 OK - code: 200 - duration: 89.419166ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 68ba0fbe-3e3f-4e1f-8e24-7a761fa3fe2b - status: 200 OK - code: 200 - duration: 306.172375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 09492802-27ac-4eb3-9060-98b0215a1175 - status: 200 OK - code: 200 - duration: 87.344458ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 37dcfe59-5ed6-41b4-8281-5616dea8ae06 - status: 200 OK - code: 200 - duration: 94.61725ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dd6cfd3f-691b-419a-a92d-8ff316ef8565 - status: 200 OK - code: 200 - duration: 81.839875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6769ab81-2ce6-4741-b827-f451c2210270 - status: 200 OK - code: 200 - duration: 199.035542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff859354-9ced-439e-b733-71c87d56c4b4 - status: 200 OK - code: 200 - duration: 81.679625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f2f9787d-50f4-4903-aaac-bdd84fc4ca6f - status: 200 OK - code: 200 - duration: 96.885708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 087dbc55-27e8-450e-976c-b0c266ff5fcb - status: 200 OK - code: 200 - duration: 208.625416ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4cd06a4d-8e7d-4490-939b-122909060264 - status: 200 OK - code: 200 - duration: 91.986833ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7df8fa29-e37e-4703-b837-be57871cb997 - status: 200 OK - code: 200 - duration: 96.690167ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 581dd3f3-8366-4457-97ab-5da4e3c2afe8 - status: 200 OK - code: 200 - duration: 92.296667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e7a1dc60-5feb-457b-a8d5-f99f2865f797 - status: 200 OK - code: 200 - duration: 292.921584ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 829b54aa-9faf-49de-b709-30c8ca9b3818 - status: 200 OK - code: 200 - duration: 197.34175ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2654c4f9-d38b-45af-b709-d67d0ff51b20 - status: 200 OK - code: 200 - duration: 90.440542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb6f10fd-a6a1-477a-9f9f-2c089a967105 - status: 200 OK - code: 200 - duration: 87.672834ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e3388b8-ca46-4c3d-a0a8-faad9c06c4a6 - status: 200 OK - code: 200 - duration: 111.731083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a1e03982-7a5d-46da-80f3-c71bb387ebe3 - status: 200 OK - code: 200 - duration: 89.911291ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e5af8b69-7735-4ac4-905b-8dbbe43d46e5 - status: 200 OK - code: 200 - duration: 79.88925ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fceebde9-7898-4412-89a1-0ded125bcfeb - status: 200 OK - code: 200 - duration: 189.188416ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7824e432-d3b3-494a-8731-3e2520baa7ff - status: 200 OK - code: 200 - duration: 92.671458ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9facbd1-be53-4400-88dd-3c490582f229 - status: 200 OK - code: 200 - duration: 94.983166ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 490b919e-9c06-48f0-9dc7-b06bf648f027 - status: 200 OK - code: 200 - duration: 105.242584ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b7906ab-6595-4f95-9db2-731bcef8857a - status: 200 OK - code: 200 - duration: 256.724584ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c84b801-f66c-4d06-8863-ac8a116698fb - status: 200 OK - code: 200 - duration: 103.289375ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8340d1e6-58ea-4796-a6fb-2daf18ddc2f6 - status: 200 OK - code: 200 - duration: 137.065583ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 02088569-9ea8-4eac-9bb9-2b193abcedf8 - status: 200 OK - code: 200 - duration: 84.555417ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c259878b-a906-4a4c-897d-b17e4159153c - status: 200 OK - code: 200 - duration: 120.509333ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5ce577f3-9fb9-459a-a722-9f0195bea1a3 - status: 200 OK - code: 200 - duration: 113.222875ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1771e390-7604-4e84-8fdc-a57c49b6e8eb - status: 200 OK - code: 200 - duration: 81.248042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52fd9bde-4107-438a-afb7-7a5ad27d9f2f - status: 200 OK - code: 200 - duration: 83.393042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a4bf0d6f-2115-4a55-a744-c9cda3313870 - status: 200 OK - code: 200 - duration: 232.7185ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 730b5009-9a7c-40ba-9487-29136fab5035 - status: 200 OK - code: 200 - duration: 95.487916ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0de9e0b8-0979-477c-85f2-c00b149a62be - status: 200 OK - code: 200 - duration: 91.956542ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 47b37873-fe24-47d4-ac42-5e3590f16e60 - status: 200 OK - code: 200 - duration: 191.460167ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d24b7236-0b1c-401b-8fe9-5eaba7d49d2e - status: 200 OK - code: 200 - duration: 294.341792ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2af6d44d-1cae-4e60-bdf5-6aab10515577 - status: 200 OK - code: 200 - duration: 220.375875ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2ccacf2f-01c1-46a3-a240-252bd974e3ae - status: 200 OK - code: 200 - duration: 99.701459ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1bd2daf8-2984-4615-91f0-4f1a67ad9036 - status: 200 OK - code: 200 - duration: 132.962209ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b424b089-e0ed-4ced-9e61-0c04bc729c76 - status: 200 OK - code: 200 - duration: 108.883333ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 978bf1d8-1a35-42cc-a6df-f3282d98a4b7 - status: 200 OK - code: 200 - duration: 90.240083ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3d078cd0-32b3-4fcd-9a17-4d16dfc75abb - status: 200 OK - code: 200 - duration: 91.909ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7d3c3e6-ace7-4123-86ce-4993435d8118 - status: 200 OK - code: 200 - duration: 89.98575ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d1286cc-60b8-43e8-9368-c73e0d2c7961 - status: 200 OK - code: 200 - duration: 234.84075ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c02630c-505a-4663-bf75-06866d0fdfb6 - status: 200 OK - code: 200 - duration: 96.912ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e2b1a3c7-eb56-44d3-bf2f-c6ddac131cd8 - status: 200 OK - code: 200 - duration: 94.406083ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 67729fa0-c633-4e0a-a292-b5e769ddd4ef - status: 200 OK - code: 200 - duration: 80.325ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ba728676-a22b-4fe7-965d-8c944a8524ff - status: 200 OK - code: 200 - duration: 89.140875ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b850f203-2775-4df8-a0c5-0048ae01b5c8 - status: 200 OK - code: 200 - duration: 328.603125ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 857e4fe5-ed65-410b-a889-16860ce6f015 - status: 200 OK - code: 200 - duration: 84.848666ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be6b6e25-984c-4c04-a767-eda44473713a - status: 200 OK - code: 200 - duration: 98.759208ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b445ed6-9d13-4564-9069-d24fc739ed1e - status: 200 OK - code: 200 - duration: 199.679625ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9e100de7-cd46-4338-b2c8-318d6f67771d - status: 200 OK - code: 200 - duration: 107.024208ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5f5cf931-1b32-435e-b308-76ec3f38402f - status: 200 OK - code: 200 - duration: 133.024791ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c87a0b5f-2864-4406-ae91-c3d63bf8fd10 - status: 200 OK - code: 200 - duration: 92.486625ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fcfd1e24-e4df-424a-a553-519b6aaed745 - status: 200 OK - code: 200 - duration: 159.291417ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d2bcddb0-31f3-487e-80ec-d0cae35c44cc - status: 200 OK - code: 200 - duration: 81.764209ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 39c6b9d0-8227-4042-aac6-855a45a8c867 - status: 200 OK - code: 200 - duration: 196.426ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"instance_id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-snapshot","expires_at":"2025-12-31T23:59:59Z"}' - 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/v1/regions/fr-par/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 400 - uncompressed: false - body: '{"created_at":"2025-07-21T13:27:34.379424Z","expires_at":"2025-12-31T23:59:59Z","id":"35bbf600-073d-47d2-b25b-9515a6bbfe23","instance_id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":0,"status":"creating","updated_at":"2025-07-21T13:27:34.379424Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "400" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d581ed0b-4740-4cb4-8f5a-b983b57ae486 - status: 200 OK - code: 200 - duration: 205.364625ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/35bbf600-073d-47d2-b25b-9515a6bbfe23 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 400 - uncompressed: false - body: '{"created_at":"2025-07-21T13:27:34.379424Z","expires_at":"2025-12-31T23:59:59Z","id":"35bbf600-073d-47d2-b25b-9515a6bbfe23","instance_id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":0,"status":"creating","updated_at":"2025-07-21T13:27:34.379424Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "400" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 714bc1fb-966a-4ade-9ce2-b89249d39972 - status: 200 OK - code: 200 - duration: 86.682167ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/35bbf600-073d-47d2-b25b-9515a6bbfe23 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-07-21T13:27:34.379424Z","expires_at":"2025-12-31T23:59:59Z","id":"35bbf600-073d-47d2-b25b-9515a6bbfe23","instance_id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:27:35.313730Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4083407e-8f91-4e7e-aa62-190edf084ff5 - status: 200 OK - code: 200 - duration: 96.923917ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/35bbf600-073d-47d2-b25b-9515a6bbfe23 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-07-21T13:27:34.379424Z","expires_at":"2025-12-31T23:59:59Z","id":"35bbf600-073d-47d2-b25b-9515a6bbfe23","instance_id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:27:35.313730Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8bab913-7b2c-4c55-8cf3-679e1b3cf33a - status: 200 OK - code: 200 - duration: 30.3025ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b7ff45dc-f3c0-46bc-843f-c82e1179b40a - status: 200 OK - code: 200 - duration: 87.623375ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/35bbf600-073d-47d2-b25b-9515a6bbfe23 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-07-21T13:27:34.379424Z","expires_at":"2025-12-31T23:59:59Z","id":"35bbf600-073d-47d2-b25b-9515a6bbfe23","instance_id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:27:35.313730Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 00abdb3b-5897-41db-90d0-56e6215f4233 - status: 200 OK - code: 200 - duration: 75.602875ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/35bbf600-073d-47d2-b25b-9515a6bbfe23 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 409 - uncompressed: false - body: '{"created_at":"2025-07-21T13:27:34.379424Z","expires_at":"2025-12-31T23:59:59Z","id":"35bbf600-073d-47d2-b25b-9515a6bbfe23","instance_id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"deleting","updated_at":"2025-07-21T13:27:46.506604Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "409" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ba01e3a2-6d1a-4395-93d5-1730f668e33f - status: 200 OK - code: 200 - duration: 131.134125ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f6922dea-d796-4db5-b42d-268d5f9cc527 - status: 200 OK - code: 200 - duration: 27.5725ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c0eaa0e-303e-4d65-89f1-032beecb62bc - status: 200 OK - code: 200 - duration: 152.09675ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fadd6699-e054-4756-aaed-a4b387fd3a05 - status: 200 OK - code: 200 - duration: 93.334583ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 259383dc-6a0a-45bc-812a-be7884cb8f9c - status: 200 OK - code: 200 - duration: 89.657083ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea4b1d42-9847-4663-b81f-8c583853d92b - status: 200 OK - code: 200 - duration: 191.357583ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0708ffe8-18d9-41c0-b744-a3db876e9f6a - status: 200 OK - code: 200 - duration: 31.748708ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 79674f03-d743-4c7b-8d04-915f66bb08fe - status: 200 OK - code: 200 - duration: 101.389583ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4fed028e-486d-4a9a-825b-e20ccfbec8b8 - status: 200 OK - code: 200 - duration: 30.632042ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17ddf10f-cd80-455a-9f1b-541a98eaa0f4 - status: 200 OK - code: 200 - duration: 117.296834ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7214670f-5dcf-4ad5-8531-15eac3490507 - status: 200 OK - code: 200 - duration: 61.680833ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - daede9cc-27ca-43de-bddb-1d614242ea22 - status: 200 OK - code: 200 - duration: 101.545375ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 42bd5561-78cc-4727-8589-2e036dba8d5f - status: 200 OK - code: 200 - duration: 83.274708ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ba1d3ed2-5553-462f-ac7d-ccf7d2e7d4ba - status: 200 OK - code: 200 - duration: 84.190708ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f7ad9910-e606-492e-8af6-265d9e7bc6f4 - status: 200 OK - code: 200 - duration: 126.175625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d0c451dc-47ed-490e-99c7-e2bacb398e7b - status: 200 OK - code: 200 - duration: 181.883417ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1799e22b-6562-43f5-8990-a19ef8593176 - status: 200 OK - code: 200 - duration: 31.775208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 68fe8b1d-9de3-4f9b-b045-8b79968c134d - status: 200 OK - code: 200 - duration: 29.743417ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6bdeefe-afce-4de3-ad13-01cedee6576d - status: 200 OK - code: 200 - duration: 161.705958ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 65c714eb-2e61-48dc-b6b4-0f61c2fe94d5 - status: 200 OK - code: 200 - duration: 105.470708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 931d85da-e0b5-4756-9e1d-b24366766045 - status: 200 OK - code: 200 - duration: 157.959916ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1b059cfa-d3cf-4dcf-815d-1e829054fa1e - status: 200 OK - code: 200 - duration: 100.525708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9626a80-cc93-41d8-8fab-e79f16a8105b - status: 200 OK - code: 200 - duration: 98.068791ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b93c9de-f8f8-4491-856d-8e047a18e27f - status: 200 OK - code: 200 - duration: 112.916166ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d6c00cd4-82f6-49da-bfce-d6b6679848af - status: 200 OK - code: 200 - duration: 85.021125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 696ae211-2782-40b2-9fed-e20a11af925b - status: 200 OK - code: 200 - duration: 106.663584ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff8c7534-e60e-447b-9690-e544a078a2bd - status: 200 OK - code: 200 - duration: 90.463458ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec103388-e655-4e43-b464-a6071365316c - status: 200 OK - code: 200 - duration: 147.671792ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9aa7adf1-f116-403b-8958-da1ac4b7236f - status: 200 OK - code: 200 - duration: 108.794542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3fd2fac6-e020-4ea7-9765-fa4caefa1e0c - status: 200 OK - code: 200 - duration: 79.236292ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7708525-28ec-441b-bcbb-c0a5dab98a0f - status: 200 OK - code: 200 - duration: 98.0335ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5c9c9d40-aa0b-4af3-85fc-a03c0610f9e9 - status: 200 OK - code: 200 - duration: 310.986333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4eec1609-638c-463e-a4a6-5c7f74f541fb - status: 200 OK - code: 200 - duration: 85.464667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 38aa520e-456f-487d-b7fd-91ae044f69ef - status: 200 OK - code: 200 - duration: 145.05175ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9850bca1-23bb-4749-af53-8aadaed8b98d - status: 200 OK - code: 200 - duration: 96.911875ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec1e997a-6017-4165-85ff-fb75726ba901 - status: 200 OK - code: 200 - duration: 88.900709ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4550c4ed-fba3-41c6-b010-e311457b3baa - status: 200 OK - code: 200 - duration: 92.250667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 590564ab-6b46-4ecf-af3e-304b0b379b36 - status: 200 OK - code: 200 - duration: 84.8305ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5f1be2ca-0de4-470a-943c-ccb78d63e30a - status: 200 OK - code: 200 - duration: 243.192625ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3e874ad-0e65-4e41-908c-458eb76ebeea - status: 200 OK - code: 200 - duration: 84.624416ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e63df388-151f-4c4d-bdb0-99ae3e506f71 - status: 200 OK - code: 200 - duration: 86.909541ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a109e1e6-88be-48bb-9630-ebf4a27ade0e - status: 200 OK - code: 200 - duration: 103.408667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fc7c5816-f9f7-4fdd-9f63-e917c4bee4b9 - status: 200 OK - code: 200 - duration: 138.500875ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b5e4cf1-5f0b-42b8-979e-50dfec6ced63 - status: 200 OK - code: 200 - duration: 165.371125ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ff19498-2ef5-4678-9e70-842886e4b7e8 - status: 200 OK - code: 200 - duration: 82.371958ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 079c9eb3-2937-493a-8ff7-945ab958136a - status: 200 OK - code: 200 - duration: 89.028291ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:19.662754Z","endpoints":[{"dns_record":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6.mgdb.fr-par.scw.cloud","id":"c5a63e12-8324-48e1-bfa9-5e6e2efaf9c2","port":27017,"public_network":{}}],"id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:20.178990Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:35:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff012aa9-cb6c-4757-bbd8-8183cb52dafc - status: 200 OK - code: 200 - duration: 105.263875ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f1f147cd-4ab3-4495-aeb1-46faf445e5c6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"f1f147cd-4ab3-4495-aeb1-46faf445e5c6","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:35:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ff64254-1783-4be7-a010-d5e2a87f029c - status: 404 Not Found - code: 404 - duration: 21.037625ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/35bbf600-073d-47d2-b25b-9515a6bbfe23 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"35bbf600-073d-47d2-b25b-9515a6bbfe23","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:35:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4020eedc-6f94-48ee-b916-54db7c631c47 - status: 404 Not Found - code: 404 - duration: 24.23375ms diff --git a/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-id.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-lifecycle.cassette.yaml similarity index 55% rename from internal/services/mongodb/testdata/data-source-mongo-db-instance-by-id.cassette.yaml rename to internal/services/mongodb/testdata/mongo-db-snapshot-lifecycle.cassette.yaml index c810c7473..268d768f0 100644 --- a/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-id.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-snapshot-lifecycle.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 316 + content_length: 313 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance-id","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' form: {} headers: Content-Type: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:14:50 GMT + - Thu, 24 Jul 2025 14:48:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4a883b2-b3e5-4014-a000-1e164d03af26 + - 2e1d8f38-df06-4ee2-9aa3-6fe5f6b4e995 status: 200 OK code: 200 - duration: 2.536350833s + duration: 1.02717025s - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:14:50 GMT + - Thu, 24 Jul 2025 14:48:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b19a17c-8339-4c42-8462-f9b65f4b0d3e + - 7d97281c-34a9-44ed-8027-f92c96d8eafb status: 200 OK code: 200 - duration: 110.115583ms + duration: 115.853958ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -125,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:15:00 GMT + - Thu, 24 Jul 2025 14:48:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4920fb7-da75-44ba-98be-88eb8f85e22a + - 88f03485-874b-462c-a7a5-e935a7d42285 status: 200 OK code: 200 - duration: 226.049042ms + duration: 126.818458ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -174,18 +174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:15:10 GMT + - Thu, 24 Jul 2025 14:48:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba90fd44-866b-4695-a9ce-38171b834fb3 + - 65ee33df-4616-4224-bd75-f4a88aaf605e status: 200 OK code: 200 - duration: 83.310542ms + duration: 103.218708ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -223,18 +223,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:15:20 GMT + - Thu, 24 Jul 2025 14:48:55 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37148f49-e9ef-4d69-a144-9ddb358b3450 + - ca0e6004-6b7d-405a-a63d-e9caff86abde status: 200 OK code: 200 - duration: 232.958125ms + duration: 84.17675ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -272,18 +272,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:15:30 GMT + - Thu, 24 Jul 2025 14:49:05 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bef4e9bd-5c8d-4e14-aec7-e26f7240000c + - a6c4af13-a9df-4d64-bb2c-5f3702496ac0 status: 200 OK code: 200 - duration: 94.061125ms + duration: 177.321584ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -321,18 +321,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:15:41 GMT + - Thu, 24 Jul 2025 14:49:15 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9314113e-6f26-4e01-ae0c-42ecbf6d8af7 + - 65e860fb-928d-4f6d-92bf-e27ef0cbae12 status: 200 OK code: 200 - duration: 115.7985ms + duration: 107.822ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -370,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:15:51 GMT + - Thu, 24 Jul 2025 14:49:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cea5c9a5-58fe-4be4-9450-1390bbdf6d3c + - eb848f75-aed8-468b-aea2-834228458c12 status: 200 OK code: 200 - duration: 113.141167ms + duration: 95.769083ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -419,18 +419,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:16:01 GMT + - Thu, 24 Jul 2025 14:49:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c34f496-ecd1-481c-930c-092faac1f565 + - 14dec1f7-cd6f-41a9-9be3-60d9c2987a01 status: 200 OK code: 200 - duration: 292.027875ms + duration: 121.805958ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -468,18 +468,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:16:11 GMT + - Thu, 24 Jul 2025 14:49:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85776390-7a1e-484c-a3ea-5b1271f03c52 + - 5ecd79dc-6705-481b-8770-a4ecacc99c6a status: 200 OK code: 200 - duration: 94.8675ms + duration: 102.847708ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -517,18 +517,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:16:21 GMT + - Thu, 24 Jul 2025 14:49:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e3ece7e-0174-4fcd-a34d-901000bf0552 + - 40eaf807-ae08-429e-b907-5600f75160a2 status: 200 OK code: 200 - duration: 97.860042ms + duration: 321.645916ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -566,18 +566,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:16:31 GMT + - Thu, 24 Jul 2025 14:50:06 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de7685bd-3c54-4949-b280-3f6917a34fa1 + - 78666e52-3395-4d03-8ea6-336a8228c7b3 status: 200 OK code: 200 - duration: 179.743166ms + duration: 104.838916ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -615,18 +615,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:16:41 GMT + - Thu, 24 Jul 2025 14:50:16 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a3d781e-befe-4239-a1f1-84ba5021478a + - 54cee457-657b-4ccf-888a-e7447529bf0e status: 200 OK code: 200 - duration: 90.016666ms + duration: 101.11125ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -664,18 +664,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:16:52 GMT + - Thu, 24 Jul 2025 14:50:26 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f4665b3-351a-4767-b4f9-f8efe117d1d3 + - 79787ed8-7e1a-4b72-be16-c9ed8d9a9ced status: 200 OK code: 200 - duration: 108.666083ms + duration: 98.238542ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -713,18 +713,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:17:02 GMT + - Thu, 24 Jul 2025 14:50:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d99ea1c-1ee4-4ea1-a972-eaa31c6e2041 + - 796b9dba-6c7d-4d3c-a824-7f86f96d70d0 status: 200 OK code: 200 - duration: 241.039ms + duration: 233.203166ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -762,18 +762,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:17:12 GMT + - Thu, 24 Jul 2025 14:50:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74067226-89a4-4492-b496-055d5102fd8f + - 50e3fb45-6001-4833-9646-411eae0c1764 status: 200 OK code: 200 - duration: 93.218792ms + duration: 121.361916ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -811,18 +811,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:17:22 GMT + - Thu, 24 Jul 2025 14:50:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9f914f5-e00d-4029-b010-2239a5ad7139 + - a4b2c054-c908-4df4-a33e-d87fc0f5ec5d status: 200 OK code: 200 - duration: 160.643666ms + duration: 339.797542ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -860,18 +860,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:17:32 GMT + - Thu, 24 Jul 2025 14:51:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa5aaf20-e0b0-4ed5-ac85-1f524017cef5 + - 27b6c815-0968-4dcc-b33c-e313123725be status: 200 OK code: 200 - duration: 85.915333ms + duration: 177.148625ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -909,18 +909,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:17:42 GMT + - Thu, 24 Jul 2025 14:51:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94ae0bfe-bbdf-4a01-bf49-d5d249e45467 + - 5df5460e-5b38-4d56-bcf1-03880ae80860 status: 200 OK code: 200 - duration: 90.11ms + duration: 82.963417ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -958,18 +958,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:17:52 GMT + - Thu, 24 Jul 2025 14:51:27 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1710725b-e069-4b70-a88f-c8c7f7484ccd + - 049c9686-230b-49fd-9ec3-735b9e15384d status: 200 OK code: 200 - duration: 84.383791ms + duration: 98.136375ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1007,18 +1007,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:18:02 GMT + - Thu, 24 Jul 2025 14:51:37 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40b934c9-e344-4458-93e3-ce8216471c82 + - 0e3d2127-08b2-4c92-988f-312273b6753b status: 200 OK code: 200 - duration: 98.414ms + duration: 166.282583ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1056,18 +1056,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:18:13 GMT + - Thu, 24 Jul 2025 14:51:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac609706-dd1f-432c-8eda-03074a2c4094 + - 188c7862-27e1-416f-911d-17aebae306e6 status: 200 OK code: 200 - duration: 103.696375ms + duration: 147.994417ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1105,18 +1105,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:18:23 GMT + - Thu, 24 Jul 2025 14:51:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bef17af0-2e68-46f2-b1f0-5c61f40ec1ce + - de654abc-f60e-4ee7-9f91-0fed6d3ab0ce status: 200 OK code: 200 - duration: 140.660834ms + duration: 94.597ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1154,18 +1154,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:18:33 GMT + - Thu, 24 Jul 2025 14:52:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c281bd1-9496-41a1-bae1-7d88fcc6a025 + - 85e597cd-ae57-4678-83c8-6443cef382e9 status: 200 OK code: 200 - duration: 133.673125ms + duration: 95.830208ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1203,18 +1203,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:18:43 GMT + - Thu, 24 Jul 2025 14:52:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c071050f-2534-4b5c-a04d-04a98a4fd1aa + - 9784258d-de58-4a18-bbea-04c15f0fba55 status: 200 OK code: 200 - duration: 98.365041ms + duration: 111.52875ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1252,18 +1252,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:18:53 GMT + - Thu, 24 Jul 2025 14:52:28 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1a76b3f-84a2-49c8-b98c-77f373f53de6 + - d4c92336-f98f-4cf3-97b8-74fc94e89a6b status: 200 OK code: 200 - duration: 213.776708ms + duration: 224.531166ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1301,18 +1301,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:19:03 GMT + - Thu, 24 Jul 2025 14:52:38 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 692fdf59-35ec-4721-955a-daca145d5990 + - 0c892918-8ec0-417e-9f2f-9a50f2350ff9 status: 200 OK code: 200 - duration: 120.520875ms + duration: 102.15025ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1350,18 +1350,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:19:13 GMT + - Thu, 24 Jul 2025 14:52:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c85da95-14de-494b-adb1-45619446f9f6 + - 26b2cc9b-2b10-4597-9cfa-f5c131fe7f1f status: 200 OK code: 200 - duration: 94.055792ms + duration: 88.100541ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1399,18 +1399,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:19:24 GMT + - Thu, 24 Jul 2025 14:52:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b7c2f8b-4b0e-4134-b0ed-34b8fe1dd6c6 + - 8cd650f2-1f29-411e-9364-4eb401f75bbf status: 200 OK code: 200 - duration: 751.833291ms + duration: 130.827708ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1448,18 +1448,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:19:34 GMT + - Thu, 24 Jul 2025 14:53:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3396a23-6e82-4c80-b424-4fa4622663ee + - 3f699ee5-78cb-408b-90fc-88f3d02f91e1 status: 200 OK code: 200 - duration: 96.289667ms + duration: 114.256541ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1497,18 +1497,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:19:44 GMT + - Thu, 24 Jul 2025 14:53:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 171fa2e5-5b78-4b42-9acb-6a602aaecd05 + - 8c0639fc-469f-4285-8560-e01b7ca2b50c status: 200 OK code: 200 - duration: 152.756167ms + duration: 79.762042ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1546,18 +1546,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:19:54 GMT + - Thu, 24 Jul 2025 14:53:29 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ac9e07e-b9c3-4998-b16b-c2c621ab663f + - e3e9bc4b-5948-4879-9a9d-c08a3d62ce1a status: 200 OK code: 200 - duration: 83.858416ms + duration: 84.34175ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1595,18 +1595,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:20:05 GMT + - Thu, 24 Jul 2025 14:53:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17162b5a-9bf5-4aed-89ef-e4d09c6fe9ce + - 6575f084-9185-474b-91ae-79b7e183fce2 status: 200 OK code: 200 - duration: 98.085375ms + duration: 89.498542ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1644,18 +1644,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:20:15 GMT + - Thu, 24 Jul 2025 14:53:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a63323bb-5e7e-4bd9-bcaa-b694bf49fa09 + - 9a51976e-b6e5-4407-a480-14e9a18056db status: 200 OK code: 200 - duration: 91.374167ms + duration: 256.097958ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1693,18 +1693,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:20:25 GMT + - Thu, 24 Jul 2025 14:53:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edc30a75-1b4d-44bd-b819-8a3656e1a91d + - 257d1da4-1ec8-4d5c-9d80-9f3555a183de status: 200 OK code: 200 - duration: 86.365208ms + duration: 106.862917ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1742,18 +1742,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:20:35 GMT + - Thu, 24 Jul 2025 14:54:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 014408a1-e22d-496e-9a5d-eecad48d1a42 + - bdaf31c5-8298-4025-b82b-6da39601d162 status: 200 OK code: 200 - duration: 96.662125ms + duration: 108.187334ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1791,18 +1791,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:20:45 GMT + - Thu, 24 Jul 2025 14:54:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fc90c85-c180-428e-a21f-113dacef5242 + - b7fa06c2-5e14-4629-93d3-6f3422c43dd4 status: 200 OK code: 200 - duration: 83.823292ms + duration: 96.785166ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1840,18 +1840,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:20:55 GMT + - Thu, 24 Jul 2025 14:54:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15b7c559-9522-4659-a74f-18c3f5592e35 + - d49be678-c059-4b1c-afd8-267a47e0ee86 status: 200 OK code: 200 - duration: 95.969291ms + duration: 237.791125ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -1889,18 +1889,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:21:05 GMT + - Thu, 24 Jul 2025 14:54:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53e4cb1b-2034-4ba8-b20c-13c84e70532f + - 7cc08bef-02bc-4aeb-a7a7-399053805c50 status: 200 OK code: 200 - duration: 99.8725ms + duration: 31.91375ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6/certificate method: GET response: proto: HTTP/2.0 @@ -1938,18 +1938,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsTlZZYzA2MTRCUlZtUTJOeDJVVW93QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTURJd09UTXlNMlF0TmpkaU1TMDBOVGMyTFRrMU1UTXROMlZrCk5XWTJObUV6TjJZMk1CNFhEVEkxTURjeU5ERTBORGd5TkZvWERUTTFNRGN5TWpFME5EZ3lORm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBd01qQTVNekl6WkMwMk4ySXhMVFExTnpZdE9UVXhNeTAzClpXUTFaalkyWVRNM1pqWXdLakFGQmdNclpYQURJUURSbVp1dEJVTTkzZmI1UUVNdFRiNlV0NVhoWlFzN0QvT2UKNUdDc2hoVlpCNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFPTnp5OEE5YTRaSUlMCjg4ZksyMHFqN0hSNDVUQUZCZ01yWlhBRFFRQUdkTUVhVjg2LzF1VXNESHRZY0ZjemxGRzNucTNTVU0yUDVMR0oKUnN1TVdONmRRMnFRRU02YW5WWkI4V3JpeW55YkVIYUFtYnRKSTdjTjZDZnVxeEVKCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "686" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:21:15 GMT + - Thu, 24 Jul 2025 14:54:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1959,46 +1959,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd4c8c7d-a9d8-4fb2-bfb2-c64754742fe1 + - d6dda917-52be-42a0-a87f-7eb17a997777 status: 200 OK code: 200 - duration: 95.088334ms + duration: 181.765ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 113 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-snapshot","expires_at":"2025-12-31T23:59:59Z"}' 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 400 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-12-31T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":0,"status":"creating","updated_at":"2025-07-24T14:54:30.538957Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "686" + - "400" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:21:25 GMT + - Thu, 24 Jul 2025 14:54:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2008,10 +2010,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85528c1f-cc76-4e35-81e3-b286b4998c99 + - 83e62833-6f6a-4584-bc3a-9314049113df status: 200 OK code: 200 - duration: 243.225333ms + duration: 387.174333ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2030,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -2036,18 +2038,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 400 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-12-31T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":0,"status":"creating","updated_at":"2025-07-24T14:54:30.538957Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "686" + - "400" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:21:36 GMT + - Thu, 24 Jul 2025 14:54:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2057,10 +2059,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6f30e17-a25c-4b3a-bc44-22adbaf2bc7b + - c317377d-9b31-4eb6-b192-83a9c70a39bb status: 200 OK code: 200 - duration: 130.604625ms + duration: 177.102459ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2079,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -2085,18 +2087,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-12-31T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-24T14:54:31.758165Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "686" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:21:46 GMT + - Thu, 24 Jul 2025 14:54:41 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2106,10 +2108,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5773b8f2-7174-4c3d-b030-0d3a0ae33988 + - 091bf374-60ef-4cd4-9c1f-8723bc127e0b status: 200 OK code: 200 - duration: 95.822625ms + duration: 98.348084ms - id: 43 request: proto: HTTP/1.1 @@ -2126,7 +2128,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -2134,18 +2136,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-12-31T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-24T14:54:31.758165Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "686" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:21:56 GMT + - Thu, 24 Jul 2025 14:54:41 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2155,10 +2157,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e16b360-e3f1-4284-8dc6-1351eafc27a9 + - c4b70285-f873-4f7b-b207-1d0279c33905 status: 200 OK code: 200 - duration: 107.287833ms + duration: 105.698834ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2177,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -2183,18 +2185,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:22:06 GMT + - Thu, 24 Jul 2025 14:54:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2204,10 +2206,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c702463-e5fb-4a8e-88a2-18c820448296 + - ed61999d-3f78-4472-ad93-99e628cd0b81 status: 200 OK code: 200 - duration: 95.259458ms + duration: 85.490584ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2226,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6/certificate method: GET response: proto: HTTP/2.0 @@ -2232,18 +2234,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsTlZZYzA2MTRCUlZtUTJOeDJVVW93QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTURJd09UTXlNMlF0TmpkaU1TMDBOVGMyTFRrMU1UTXROMlZrCk5XWTJObUV6TjJZMk1CNFhEVEkxTURjeU5ERTBORGd5TkZvWERUTTFNRGN5TWpFME5EZ3lORm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBd01qQTVNekl6WkMwMk4ySXhMVFExTnpZdE9UVXhNeTAzClpXUTFaalkyWVRNM1pqWXdLakFGQmdNclpYQURJUURSbVp1dEJVTTkzZmI1UUVNdFRiNlV0NVhoWlFzN0QvT2UKNUdDc2hoVlpCNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFPTnp5OEE5YTRaSUlMCjg4ZksyMHFqN0hSNDVUQUZCZ01yWlhBRFFRQUdkTUVhVjg2LzF1VXNESHRZY0ZjemxGRzNucTNTVU0yUDVMR0oKUnN1TVdONmRRMnFRRU02YW5WWkI4V3JpeW55YkVIYUFtYnRKSTdjTjZDZnVxeEVKCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "686" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:22:16 GMT + - Thu, 24 Jul 2025 14:54:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2253,10 +2255,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e95b95ad-11ed-4ef4-93bc-e10998106320 + - 0e3eb617-649a-49c4-8149-ae7f68117342 status: 200 OK code: 200 - duration: 101.075791ms + duration: 26.477875ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2275,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -2281,18 +2283,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-12-31T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-24T14:54:31.758165Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "686" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:22:26 GMT + - Thu, 24 Jul 2025 14:54:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2302,10 +2304,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7923e2cb-5659-41c9-8051-a3e4b44e60c8 + - 592090dc-737a-4117-95d9-8ea089d9a9e7 status: 200 OK code: 200 - duration: 208.016708ms + duration: 89.52525ms - id: 47 request: proto: HTTP/1.1 @@ -2322,7 +2324,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -2330,18 +2332,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "686" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:22:36 GMT + - Thu, 24 Jul 2025 14:54:43 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2351,10 +2353,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45d1914f-feb6-4258-a895-7c81a5aa6d47 + - ea3b4fae-0dd1-4369-8373-cef9eb199d41 status: 200 OK code: 200 - duration: 98.941125ms + duration: 87.189917ms - id: 48 request: proto: HTTP/1.1 @@ -2371,7 +2373,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6/certificate method: GET response: proto: HTTP/2.0 @@ -2379,18 +2381,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsTlZZYzA2MTRCUlZtUTJOeDJVVW93QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTURJd09UTXlNMlF0TmpkaU1TMDBOVGMyTFRrMU1UTXROMlZrCk5XWTJObUV6TjJZMk1CNFhEVEkxTURjeU5ERTBORGd5TkZvWERUTTFNRGN5TWpFME5EZ3lORm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBd01qQTVNekl6WkMwMk4ySXhMVFExTnpZdE9UVXhNeTAzClpXUTFaalkyWVRNM1pqWXdLakFGQmdNclpYQURJUURSbVp1dEJVTTkzZmI1UUVNdFRiNlV0NVhoWlFzN0QvT2UKNUdDc2hoVlpCNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFPTnp5OEE5YTRaSUlMCjg4ZksyMHFqN0hSNDVUQUZCZ01yWlhBRFFRQUdkTUVhVjg2LzF1VXNESHRZY0ZjemxGRzNucTNTVU0yUDVMR0oKUnN1TVdONmRRMnFRRU02YW5WWkI4V3JpeW55YkVIYUFtYnRKSTdjTjZDZnVxeEVKCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "686" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:22:46 GMT + - Thu, 24 Jul 2025 14:54:43 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2400,10 +2402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 104a4b3c-89ad-49ee-942d-4c2d5ca3b0e3 + - 69f2a58b-ebb3-406a-a5da-79fee5e145c3 status: 200 OK code: 200 - duration: 98.891584ms + duration: 26.164166ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2422,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -2428,18 +2430,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-12-31T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-24T14:54:31.758165Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "686" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:22:56 GMT + - Thu, 24 Jul 2025 14:54:43 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2449,46 +2451,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9df04ea6-742d-40a6-8cf1-ef7c0e420c19 + - c994f9e3-a730-48eb-b65b-8fbb22c2d015 status: 200 OK code: 200 - duration: 91.082333ms + duration: 85.129292ms - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"updated-snapshot","expires_at":"2025-09-20T23:59:59Z"}' 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-09-20T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-24T14:54:44.043467Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "686" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:23:07 GMT + - Thu, 24 Jul 2025 14:54:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2498,10 +2502,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c953c242-e68b-477b-bddd-da7aa5beab76 + - 6b792df2-421c-4c7a-96ed-9c9f0a5fcfc9 status: 200 OK code: 200 - duration: 117.428917ms + duration: 107.218792ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2522,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -2526,18 +2530,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-09-20T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-24T14:54:44.043467Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "686" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:23:17 GMT + - Thu, 24 Jul 2025 14:54:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -2547,10 +2551,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26f35445-c20f-44af-8945-5b4df05b2d0e + - b4b7e839-40c2-4abe-ae5c-c276c62304cb status: 200 OK code: 200 - duration: 79.453583ms + duration: 78.77175ms - id: 52 request: proto: HTTP/1.1 @@ -2567,7 +2571,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -2575,20 +2579,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-09-20T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-24T14:54:44.043467Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "679" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:17 GMT + - Thu, 24 Jul 2025 14:54:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2596,10 +2600,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48a129db-9a7e-4be1-86af-c45d8819d972 + - 65d9cc9b-47b5-4052-a3b6-6c60e7c9a36e status: 200 OK code: 200 - duration: 2.400532s + duration: 38.746584ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2620,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -2624,20 +2628,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "679" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:17 GMT + - Thu, 24 Jul 2025 14:54:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2645,10 +2649,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d17d844f-247f-4119-b6f5-b3e216026620 + - bdc05daf-065d-4680-bd8e-ca1deab74898 status: 200 OK code: 200 - duration: 144.667708ms + duration: 92.895833ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2669,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6/certificate method: GET response: proto: HTTP/2.0 @@ -2673,20 +2677,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 1085 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQUlsTlZZYzA2MTRCUlZtUTJOeDJVVW93QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnTURJd09UTXlNMlF0TmpkaU1TMDBOVGMyTFRrMU1UTXROMlZrCk5XWTJObUV6TjJZMk1CNFhEVEkxTURjeU5ERTBORGd5TkZvWERUTTFNRGN5TWpFME5EZ3lORm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNBd01qQTVNekl6WkMwMk4ySXhMVFExTnpZdE9UVXhNeTAzClpXUTFaalkyWVRNM1pqWXdLakFGQmdNclpYQURJUURSbVp1dEJVTTkzZmI1UUVNdFRiNlV0NVhoWlFzN0QvT2UKNUdDc2hoVlpCNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlFPTnp5OEE5YTRaSUlMCjg4ZksyMHFqN0hSNDVUQUZCZ01yWlhBRFFRQUdkTUVhVjg2LzF1VXNESHRZY0ZjemxGRzNucTNTVU0yUDVMR0oKUnN1TVdONmRRMnFRRU02YW5WWkI4V3JpeW55YkVIYUFtYnRKSTdjTjZDZnVxeEVKCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "679" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:18 GMT + - Thu, 24 Jul 2025 14:54:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2694,10 +2698,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36ffd05c-e828-454a-b5b2-531b19b56895 + - dab314b1-fd50-47b9-a71e-cb3c00d00740 status: 200 OK code: 200 - duration: 157.535625ms + duration: 90.118084ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2718,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -2722,20 +2726,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-09-20T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-24T14:54:44.043467Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "679" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:18 GMT + - Thu, 24 Jul 2025 14:54:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,10 +2747,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0564ff2e-a925-43ba-a4c2-afcab1588824 + - b7bcfa63-e980-48ef-a403-3ddcde9c4d13 status: 200 OK code: 200 - duration: 179.89425ms + duration: 76.952083ms - id: 56 request: proto: HTTP/1.1 @@ -2763,28 +2767,28 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 412 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:54:30.538957Z","expires_at":"2025-09-20T23:59:59Z","id":"4312c327-5e3a-4951-98d7-039fb7991a06","instance_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"deleting","updated_at":"2025-07-24T14:54:46.090269Z","volume_type":"sbs_5k"}' headers: Content-Length: - - "679" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:19 GMT + - Thu, 24 Jul 2025 14:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2792,10 +2796,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ac07822-3b16-40c0-b4e2-56ca85608dda + - 03fe48ae-5f2d-4166-8ddc-b9ebc7341a8a status: 200 OK code: 200 - duration: 260.092792ms + duration: 124.612042ms - id: 57 request: proto: HTTP/1.1 @@ -2812,7 +2816,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -2820,20 +2824,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 676 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "679" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:19 GMT + - Thu, 24 Jul 2025 14:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2841,10 +2845,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81463c34-1c05-4685-a2b9-1f5ad375ecbb + - 9fd6d10a-9559-4010-8fe5-b667375c4ffa status: 200 OK code: 200 - duration: 145.220833ms + duration: 91.228042ms - id: 58 request: proto: HTTP/1.1 @@ -2861,28 +2865,28 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de - method: GET + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 562 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "679" + - "562" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:20 GMT + - Thu, 24 Jul 2025 14:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2890,10 +2894,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 719e7254-75de-49b2-a62e-2dffbfbaf388 + - ac6fe4fa-4f83-4646-92c9-4c117b5208df status: 200 OK code: 200 - duration: 121.749708ms + duration: 179.88975ms - id: 59 request: proto: HTTP/1.1 @@ -2910,7 +2914,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -2920,7 +2924,7 @@ interactions: trailer: {} content_length: 679 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "679" @@ -2929,9 +2933,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:20 GMT + - Thu, 24 Jul 2025 14:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2939,10 +2943,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35a1e441-c0e4-4e89-a78e-546a3f36fe3b + - f2b5a85f-639e-4888-9b3e-c65bfd35ae60 status: 200 OK code: 200 - duration: 278.145166ms + duration: 77.983375ms - id: 60 request: proto: HTTP/1.1 @@ -2959,105 +2963,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 565 - uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "565" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 00150db3-7555-4937-add9-16dec5c7ab5c - status: 200 OK - code: 200 - duration: 157.584916ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 682 - uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "682" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - edac7794-a7f5-4616-a904-11486af0c1af - status: 200 OK - code: 200 - duration: 164.422792ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -3065,20 +2971,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 679 uncompressed: false - body: '{"created_at":"2025-07-21T15:14:49.625591Z","endpoints":[{"dns_record":"3c380ca9-c6a2-4e8a-8efa-87bc403206de.mgdb.fr-par.scw.cloud","id":"c8d2f75a-bc7f-420c-822a-e32cbb6e5823","port":27017,"public_network":{}}],"id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","name":"test-mongodb-instance-id","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T15:14:50.066794Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-24T14:48:24.498290Z","endpoints":[{"dns_record":"0209323d-67b1-4576-9513-7ed5f66a37f6.mgdb.fr-par.scw.cloud","id":"44dad351-ec76-4725-9559-234b0678eee3","port":27017,"public_network":{}}],"id":"0209323d-67b1-4576-9513-7ed5f66a37f6","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-24T14:48:24.933559Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "682" + - "679" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:31 GMT + - Thu, 24 Jul 2025 14:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3086,60 +2992,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 129b5dda-ecf8-4a3b-8a0c-b7607bc4bfb3 + - 3ac4403e-b08d-40e2-8ce5-ef489f268832 status: 200 OK code: 200 - duration: 97.678083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 15:27:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ed42e01b-edbc-4e18-836c-45860ec41918 - status: 404 Not Found - code: 404 - duration: 30.027625ms - - id: 64 + duration: 139.847875ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3155,7 +3012,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/0209323d-67b1-4576-9513-7ed5f66a37f6 method: GET response: proto: HTTP/2.0 @@ -3165,7 +3022,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"0209323d-67b1-4576-9513-7ed5f66a37f6","type":"not_found"}' headers: Content-Length: - "129" @@ -3174,9 +3031,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:41 GMT + - Thu, 24 Jul 2025 14:55:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3184,11 +3041,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5952110d-8cc6-4bc7-bbd6-c46031d65332 + - d7d168e0-e841-4d01-99ee-7ef29cadc93b status: 404 Not Found code: 404 - duration: 23.8995ms - - id: 65 + duration: 28.72225ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3204,7 +3061,7 @@ interactions: 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/v1/regions/fr-par/instances/3c380ca9-c6a2-4e8a-8efa-87bc403206de + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/4312c327-5e3a-4951-98d7-039fb7991a06 method: GET response: proto: HTTP/2.0 @@ -3214,7 +3071,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"3c380ca9-c6a2-4e8a-8efa-87bc403206de","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"4312c327-5e3a-4951-98d7-039fb7991a06","type":"not_found"}' headers: Content-Length: - "129" @@ -3223,9 +3080,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 15:27:41 GMT + - Thu, 24 Jul 2025 14:55:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3233,7 +3090,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c020c4b-2faa-4bc9-b9c8-d8e3e6fd723c + - 86d440a5-2121-4316-8f01-dec3cdf2389b status: 404 Not Found code: 404 - duration: 22.043458ms + duration: 27.200666ms diff --git a/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml deleted file mode 100644 index c66796606..000000000 --- a/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml +++ /dev/null @@ -1,8192 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 313 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance","version":"7.0","tags":null,"node_amount":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"type":"sbs_5k","size_bytes":5000000000},"endpoints":[{"public_network":{}}]}' - 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/v1/regions/fr-par/instances - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c1fb9987-3e30-4a4d-bc8e-5d5739b1d1e4 - status: 200 OK - code: 200 - duration: 445.722375ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2b0b8a53-b319-487f-933b-f35b587fb594 - status: 200 OK - code: 200 - duration: 84.979833ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5203a956-0601-411e-b696-2dfdd0263b17 - status: 200 OK - code: 200 - duration: 98.25575ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:10:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d631ba97-464d-45bd-b39b-8bed84956a7b - status: 200 OK - code: 200 - duration: 97.629542ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 653d1713-46f8-48d4-a6ab-d86b62dd3713 - status: 200 OK - code: 200 - duration: 198.065958ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c04ba063-76c4-430b-94cc-b7afb8baee74 - status: 200 OK - code: 200 - duration: 221.374459ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a34c5a15-92be-460d-95b9-301031d8974f - status: 200 OK - code: 200 - duration: 83.966875ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 925b8779-3bda-4dda-890b-21886c1b2528 - status: 200 OK - code: 200 - duration: 102.698875ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e096304-dd5d-4be8-bdea-b045b05eecc6 - status: 200 OK - code: 200 - duration: 94.272375ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:11:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 19fd6b84-c8cb-45ed-9446-bad01cb3b2e4 - status: 200 OK - code: 200 - duration: 84.431208ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 99ad04e3-035a-44e7-8082-b876beea140a - status: 200 OK - code: 200 - duration: 77.314ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 18466162-823e-47a7-afdd-847e1e897c63 - status: 200 OK - code: 200 - duration: 89.106375ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9f9e1f1-b9c4-452a-8e7b-e919e5e1a2b9 - status: 200 OK - code: 200 - duration: 220.096959ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 79bbe2be-4372-4852-80b5-764f0c284b2d - status: 200 OK - code: 200 - duration: 75.243959ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ca41d6ed-d234-48e1-bad8-bc2ca48b6e39 - status: 200 OK - code: 200 - duration: 85.488875ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:12:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e2501a3-c947-4bbe-997f-43308a5c044c - status: 200 OK - code: 200 - duration: 79.57325ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b4e25ff0-0c78-4f67-84b8-15cde73bbd65 - status: 200 OK - code: 200 - duration: 183.151083ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ca01c85-7766-47b2-97ad-35072d0c81d9 - status: 200 OK - code: 200 - duration: 94.026625ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 27123863-a431-4e9b-b059-b807dde31aec - status: 200 OK - code: 200 - duration: 93.085792ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d44968a9-1b8f-4085-a8d3-b5ecf3a4d83d - status: 200 OK - code: 200 - duration: 274.903375ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da70a36d-73b2-49e6-8d56-3b4304c0ad6b - status: 200 OK - code: 200 - duration: 95.388958ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:13:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7eb16ae8-b78d-45b6-86f4-7360fc62ba0f - status: 200 OK - code: 200 - duration: 84.972875ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1080cd5c-fd61-440b-9f18-3ab2005910d6 - status: 200 OK - code: 200 - duration: 148.529625ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 71279686-6b0f-4b7a-bd21-a204a34bbb4f - status: 200 OK - code: 200 - duration: 313.752709ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b1f1d7dc-8e7a-4752-b28f-bc95349f5650 - status: 200 OK - code: 200 - duration: 86.586666ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ca8f9c5-704b-46a9-86b9-5cc3ad156d9f - status: 200 OK - code: 200 - duration: 98.064417ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d1c0a24d-1d57-4119-8ce5-983d9945cfab - status: 200 OK - code: 200 - duration: 89.113834ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:14:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8deec444-07e1-4289-92a2-2fbc5e9cce31 - status: 200 OK - code: 200 - duration: 147.859125ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7284a774-fef1-43ae-a4ba-7aaab98d62c2 - status: 200 OK - code: 200 - duration: 211.337708ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d20a71b2-e8dc-4d04-82e2-74be2782aedc - status: 200 OK - code: 200 - duration: 92.643958ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - af7059ed-c07e-49f3-b5b4-2c6270206cd5 - status: 200 OK - code: 200 - duration: 88.993333ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 619148c2-2fd4-4d46-8bb7-4137dbf428a0 - status: 200 OK - code: 200 - duration: 146.187209ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 59fe4bd0-53da-4000-9015-0b1c9408053f - status: 200 OK - code: 200 - duration: 96.947458ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:15:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6301387-6d44-4405-b1f5-d2c3adf302e6 - status: 200 OK - code: 200 - duration: 98.376ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d8994668-5b5b-428e-b71f-41a1ac8528f7 - status: 200 OK - code: 200 - duration: 86.393958ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f3aa3ee-b321-4576-a311-acdc886369c0 - status: 200 OK - code: 200 - duration: 157.041292ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 593464bc-3b9b-40cf-8190-0e6aa5b237d1 - status: 200 OK - code: 200 - duration: 94.807791ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 81f6d6ba-5f6f-4a40-a3c4-e01296fda170 - status: 200 OK - code: 200 - duration: 101.333958ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b2406af1-e15d-42b3-a1e8-34b3863cb315 - status: 200 OK - code: 200 - duration: 98.417458ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:16:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8f6afa1-44da-43a6-977a-8fd1ba8dc2d6 - status: 200 OK - code: 200 - duration: 82.525041ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c71fed28-0391-4d4f-bfa5-2ce8fa5d72c8 - status: 200 OK - code: 200 - duration: 116.376042ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - db0a4ef7-df0f-4ed7-867f-939db00056d0 - status: 200 OK - code: 200 - duration: 107.302584ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b8b62843-5363-4a6f-a51b-56e1fe27ef61 - status: 200 OK - code: 200 - duration: 90.146042ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8cad6e30-5e3a-45f4-8c87-5905cc5ffcef - status: 200 OK - code: 200 - duration: 309.851333ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1d722af-ae1e-423e-b4f0-69b604afa0f0 - status: 200 OK - code: 200 - duration: 133.37425ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:17:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9e79211c-e74d-4c42-9c9e-8a4619f09ce3 - status: 200 OK - code: 200 - duration: 93.654958ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e191b941-be2c-4595-81f8-47d97ad7b3b3 - status: 200 OK - code: 200 - duration: 93.333042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 46c5b209-fe81-4e20-b4f4-06a775b92b40 - status: 200 OK - code: 200 - duration: 98.469208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 378fe31d-e028-48e8-8c5e-ce05b8d16613 - status: 200 OK - code: 200 - duration: 113.935833ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0a2bace4-a7fc-48d3-b7ad-49a388c1c2c4 - status: 200 OK - code: 200 - duration: 100.920125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3a260456-9262-4171-8ece-379d11944d2c - status: 200 OK - code: 200 - duration: 83.020334ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:18:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c54a0bc0-c311-4c90-881b-00f5c2584799 - status: 200 OK - code: 200 - duration: 180.927ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd5577f5-a0e5-49b2-87d9-0670ef114a0a - status: 200 OK - code: 200 - duration: 86.180875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2065264d-64c2-4320-9058-eb29a12e4e03 - status: 200 OK - code: 200 - duration: 184.461709ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ef12638b-4ab6-4f8e-b602-fc7837c2f950 - status: 200 OK - code: 200 - duration: 86.406667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b04d3871-715d-401b-83b3-3316671ac77b - status: 200 OK - code: 200 - duration: 258.445041ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:19:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 867619d4-d9ec-4ea1-a7d4-d7da6e38b31a - status: 200 OK - code: 200 - duration: 86.903917ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dc6ce9c9-d1b1-4749-8df5-d44159807e7d - status: 200 OK - code: 200 - duration: 68.860209ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2a201e26-a14b-471d-9bcf-68865998a3f8 - status: 200 OK - code: 200 - duration: 236.283333ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63f112f2-598f-4d70-8500-caecb6bbe236 - status: 200 OK - code: 200 - duration: 82.002042ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f91ac01-f15b-4e7a-849d-d261f9e00c9d - status: 200 OK - code: 200 - duration: 91.287708ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2cffbb67-cbaf-4278-9301-74c2e75abc13 - status: 200 OK - code: 200 - duration: 85.3315ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:20:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 82071776-529b-4501-afbe-19c42ed28256 - status: 200 OK - code: 200 - duration: 184.137834ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 703d1500-3345-45d9-a276-d4116757e63c - status: 200 OK - code: 200 - duration: 89.51325ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7daaefb5-cb09-48b0-9b1f-7467293a9203 - status: 200 OK - code: 200 - duration: 74.502125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b6738637-164a-4d97-963a-8a633dc6f00b - status: 200 OK - code: 200 - duration: 95.420792ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9e3f782-e9d3-4e4f-8f46-ff1f2062a843 - status: 200 OK - code: 200 - duration: 96.4095ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d25a491e-00c1-4034-8fc7-e138f2f0419e - status: 200 OK - code: 200 - duration: 82.530625ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:21:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 67906224-57e8-47f8-964e-ce93dda8d78f - status: 200 OK - code: 200 - duration: 104.14ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 90a4b616-1dea-4c70-a135-b69425401aa6 - status: 200 OK - code: 200 - duration: 203.451ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be03ffc6-cddd-4405-9517-a9f0cd589818 - status: 200 OK - code: 200 - duration: 90.156917ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e5a2b81-f560-4a0e-83bb-8a7a2dd0bbb5 - status: 200 OK - code: 200 - duration: 92.739416ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b4027100-e12a-4d67-9d59-fc662b9c5fdb - status: 200 OK - code: 200 - duration: 93.462458ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3255db5-6827-4b93-a490-4d11867bf45e - status: 200 OK - code: 200 - duration: 170.296791ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:22:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f5c94711-8c9c-4d99-a4bd-7e95825f7f70 - status: 200 OK - code: 200 - duration: 86.698084ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bc2602d8-c4d4-4ab7-b3a3-4da9b4cd58ed - status: 200 OK - code: 200 - duration: 100.11075ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5d4b01eb-fff6-41e9-9918-f6ee1550aeda - status: 200 OK - code: 200 - duration: 90.338125ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 77c9a3e6-7058-4491-bdd1-881a8a21808f - status: 200 OK - code: 200 - duration: 85.740583ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ba3fa42-52ec-4ac9-b89a-9006c62b9a96 - status: 200 OK - code: 200 - duration: 109.600458ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f26a79ae-9a45-4796-9564-44ad2c44ac61 - status: 200 OK - code: 200 - duration: 85.3ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:23:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d2159a0-fd87-4acb-a2d8-92e948ca6950 - status: 200 OK - code: 200 - duration: 92.52825ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7aed4bf9-4c7d-4d2f-bd21-603d5966ca10 - status: 200 OK - code: 200 - duration: 299.357542ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c855444d-84db-42ef-9439-fafb22eea9cd - status: 200 OK - code: 200 - duration: 92.064584ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bdfe7868-950d-44ff-8f5c-2504238d8b09 - status: 200 OK - code: 200 - duration: 90.657958ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eb65a131-b8ec-447c-85b6-058ae0b35a49 - status: 200 OK - code: 200 - duration: 76.612292ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0af4fa3c-bebd-41d4-b44d-0b9cff2daa7e - status: 200 OK - code: 200 - duration: 495.636541ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:24:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2e009ca0-6384-4826-9ed8-08dc6c5160f9 - status: 200 OK - code: 200 - duration: 254.708792ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7659413-7307-488a-9af5-9da03d52e483 - status: 200 OK - code: 200 - duration: 114.200917ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 625452dd-d42e-41cf-9b8f-2a7d7fb4037e - status: 200 OK - code: 200 - duration: 88.386583ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a0effa1a-5cbe-4b93-b76e-61811c9f2170 - status: 200 OK - code: 200 - duration: 210.878084ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe1a2d33-ab18-4fcd-b9a3-41bdd4547350 - status: 200 OK - code: 200 - duration: 145.050375ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 549ca3ae-9879-43ea-8b2a-d07f821987c4 - status: 200 OK - code: 200 - duration: 112.956ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:25:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e99895c-17a9-42b5-9f4c-bf54d20d6877 - status: 200 OK - code: 200 - duration: 203.296041ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f06514a1-80d8-480d-a1be-61bcb58c43f4 - status: 200 OK - code: 200 - duration: 80.178042ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8237dd84-a5ad-4c86-98ca-512c97ad9478 - status: 200 OK - code: 200 - duration: 150.954625ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d42f11bf-74da-4197-9325-43c34e487826 - status: 200 OK - code: 200 - duration: 99.394625ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4ca7b953-5765-402e-8eb7-b17205b86e9e - status: 200 OK - code: 200 - duration: 125.027083ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 26d128a7-9fc5-4ac4-b033-067ed43fc6f2 - status: 200 OK - code: 200 - duration: 81.530459ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 99b74b25-3d93-4bb7-a6cb-3b2642ed4d1c - status: 200 OK - code: 200 - duration: 159.557292ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0993c720-f832-4ab2-8e4d-e7946d85b9b9 - status: 200 OK - code: 200 - duration: 88.185541ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 68aa8072-2b29-4844-a0f5-c71f2c10d41f - status: 200 OK - code: 200 - duration: 172.635083ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a58a862f-0537-4ce7-a2ad-ae721bc025bd - status: 200 OK - code: 200 - duration: 89.518833ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87829abd-9f9c-423b-bcb6-e1a494f46935 - status: 200 OK - code: 200 - duration: 95.242792ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 220052f0-3fd8-43c6-adb3-9e2590adcf30 - status: 200 OK - code: 200 - duration: 87.927459ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:27:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6cc062e2-56f6-4b64-8eca-51ecf50442ef - status: 200 OK - code: 200 - duration: 84.954875ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1771439a-42dc-46eb-806d-0bc004fb1b7f - status: 200 OK - code: 200 - duration: 224.457334ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e5602c2-3fae-45a6-bb06-6884e1170350 - status: 200 OK - code: 200 - duration: 96.12525ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3bd9033a-e7c3-4f37-a544-a5fbe8195d9f - status: 200 OK - code: 200 - duration: 101.3695ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d6501915-3ae1-4819-960b-52c4a81c9c79 - status: 200 OK - code: 200 - duration: 113.315ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 78b9793d-ad51-408b-922d-6095fc638214 - status: 200 OK - code: 200 - duration: 93.981625ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:28:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 19186d0e-59ac-45d1-aaf5-f87bb90647f8 - status: 200 OK - code: 200 - duration: 142.880291ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 939439b9-e935-4aed-bed5-87e0cc0392a3 - status: 200 OK - code: 200 - duration: 95.688875ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f850acb6-2374-4a89-ba17-28d40c17f4e7 - status: 200 OK - code: 200 - duration: 89.277167ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4028a76-09eb-4de7-8c57-cc106acfdded - status: 200 OK - code: 200 - duration: 76.39625ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 279621b5-c5ab-46f3-9c71-e1211d458bb5 - status: 200 OK - code: 200 - duration: 102.587125ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8086cbc7-473b-43bf-8e34-d5e6c51b4e60 - status: 200 OK - code: 200 - duration: 105.159708ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:29:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e238ed1d-153f-4edc-a70f-5da1e0211966 - status: 200 OK - code: 200 - duration: 194.487042ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 683 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "683" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 452a9659-5488-4e52-b152-8f0fde3cd615 - status: 200 OK - code: 200 - duration: 194.316542ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 554f7779-ff0f-40e3-9eb0-44070f07afb4 - status: 200 OK - code: 200 - duration: 272.30125ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e4b7128-65c8-4c13-95ac-e7070334adac - status: 200 OK - code: 200 - duration: 30.347417ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-snapshot","expires_at":"2025-12-31T23:59:59Z"}' - 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/v1/regions/fr-par/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 400 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-12-31T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":0,"status":"creating","updated_at":"2025-07-21T13:30:18.387012Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "400" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b3fa6c2c-2ab4-48fa-84df-64ef2ec632b1 - status: 200 OK - code: 200 - duration: 389.254792ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 400 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-12-31T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":0,"status":"creating","updated_at":"2025-07-21T13:30:18.387012Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "400" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 08fde423-01e9-47f7-897e-2f6fe98fcba2 - status: 200 OK - code: 200 - duration: 176.1265ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-12-31T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:30:19.656662Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fbf752bb-2020-4ba7-96de-496d9b6eefbf - status: 200 OK - code: 200 - duration: 98.210542ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-12-31T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:30:19.656662Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3edc2c7-044c-4cfa-afc6-3ae56b20241a - status: 200 OK - code: 200 - duration: 22.856459ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04115ab9-7816-4db7-a468-b0789de1061f - status: 200 OK - code: 200 - duration: 80.719667ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-12-31T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:30:19.656662Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3301f99-e09c-439f-af6a-27a753a395f6 - status: 200 OK - code: 200 - duration: 22.232875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 405502d8-1e71-438d-8d2e-ac95edaab19f - status: 200 OK - code: 200 - duration: 83.247208ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-12-31T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:30:19.656662Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e21269dd-9a6d-4622-872c-33aaacf6eafa - status: 200 OK - code: 200 - duration: 113.063208ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 63 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"updated-snapshot","expires_at":"2025-09-20T23:59:59Z"}' - 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/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 409 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-09-20T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:30:31.552713Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "409" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c67d347-319d-4cb6-be43-914e1b5867f9 - status: 200 OK - code: 200 - duration: 88.776416ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 409 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-09-20T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:30:31.552713Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "409" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 054845bc-73f1-4d66-a260-f63b4155e499 - status: 200 OK - code: 200 - duration: 20.933625ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 409 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-09-20T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:30:31.552713Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "409" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d585f063-2e23-48ac-9825-c719e070f1c8 - status: 200 OK - code: 200 - duration: 78.523291ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c1392c22-9d85-4bda-b6c3-ac7fc8e52d83 - status: 200 OK - code: 200 - duration: 102.367166ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 409 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-09-20T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"ready","updated_at":"2025-07-21T13:30:31.552713Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "409" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1f2e019-7080-43cd-842f-5d08f4533afb - status: 200 OK - code: 200 - duration: 21.025791ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"created_at":"2025-07-21T13:30:18.387012Z","expires_at":"2025-09-20T23:59:59Z","id":"6045c61e-cb72-4f89-ad45-498bb39f1886","instance_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size_bytes":5000000000,"status":"deleting","updated_at":"2025-07-21T13:30:33.518128Z","volume_type":"sbs_5k"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7402ac97-4f17-4843-8a6b-ffa0f8207d1e - status: 200 OK - code: 200 - duration: 252.83875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 676 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "676" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3a10affb-d889-49af-bb92-e0a8bece1f98 - status: 200 OK - code: 200 - duration: 51.01775ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ab62f16c-24e0-45d3-9931-de0ac4c175dd - status: 200 OK - code: 200 - duration: 194.198667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d16b2fa-4861-4096-965f-c8ab094454a8 - status: 200 OK - code: 200 - duration: 23.940667ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aec0fed2-b535-48bf-b0fe-131dce7b6ef6 - status: 200 OK - code: 200 - duration: 36.669292ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:30:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 577f430d-3d98-4b97-b628-1db20d3d8054 - status: 200 OK - code: 200 - duration: 98.737542ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6687c210-906c-4dee-b399-63d1198e1e4d - status: 200 OK - code: 200 - duration: 94.399375ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8bf0c103-1ff5-401a-ad7f-a85ccf28d3d8 - status: 200 OK - code: 200 - duration: 24.126083ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 500000d0-8e71-4d5d-8f3d-60af40e37f7f - status: 200 OK - code: 200 - duration: 83.453917ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c07fa353-8e29-4adf-a276-1e4aed5237c3 - status: 200 OK - code: 200 - duration: 66.641541ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1e10d60-05b8-4edd-a222-9016f4d320db - status: 200 OK - code: 200 - duration: 80.482292ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:31:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a8fa886-d450-4f45-ada7-c77f1d44cb0f - status: 200 OK - code: 200 - duration: 75.5785ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dc704e0a-e80a-4b83-9ad7-b834f73646cb - status: 200 OK - code: 200 - duration: 103.302292ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 91104627-907e-4856-b4bb-153575102952 - status: 200 OK - code: 200 - duration: 124.560291ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7ace04de-a8b7-4078-9f55-9ffbcfb2dfd4 - status: 200 OK - code: 200 - duration: 78.782875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0517e55d-77ad-4960-a222-42dbfe0e96e2 - status: 200 OK - code: 200 - duration: 129.993084ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d4b0669-ae0e-4dcc-8835-655ea53e6884 - status: 200 OK - code: 200 - duration: 245.656333ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:32:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce3182cb-208e-4783-9dac-985993b90086 - status: 200 OK - code: 200 - duration: 80.084875ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c62c442-79c7-4328-ba2b-baa6b3c396ae - status: 200 OK - code: 200 - duration: 93.515833ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 93b50cee-dca4-45ed-b6f9-b0b9b1c20f20 - status: 200 OK - code: 200 - duration: 90.474ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1277380f-da89-4091-a838-75371d59b0b5 - status: 200 OK - code: 200 - duration: 210.722792ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 45d7022c-1e25-4b42-aae8-278ebe6a7787 - status: 200 OK - code: 200 - duration: 75.373041ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - af851820-3578-4e60-a97c-9111732b7b24 - status: 200 OK - code: 200 - duration: 77.169375ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:33:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 94558ea1-9dc3-483f-860c-9827ca414254 - status: 200 OK - code: 200 - duration: 97.099833ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a049dd5b-32cd-458e-afd4-3ebc4d11ed12 - status: 200 OK - code: 200 - duration: 85.075625ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d5799cd-ed26-488c-ae89-b38ff3c9303a - status: 200 OK - code: 200 - duration: 110.047291ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a318a8d2-31ef-4d26-ae31-b59828335c2d - status: 200 OK - code: 200 - duration: 207.413834ms - - id: 160 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 975f232a-82bc-4a52-b73f-4d6106217b6a - status: 200 OK - code: 200 - duration: 88.355ms - - id: 161 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1f3fa6fc-3c1f-4437-8abc-681079b30538 - status: 200 OK - code: 200 - duration: 208.029458ms - - id: 162 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:34:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f03795c1-e18d-4b4a-8f6a-de28a17feb03 - status: 200 OK - code: 200 - duration: 96.522291ms - - id: 163 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:35:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8b8cb30f-1218-4481-99ad-8e773ae9cc26 - status: 200 OK - code: 200 - duration: 94.069667ms - - id: 164 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 679 - uncompressed: false - body: '{"created_at":"2025-07-21T13:10:32.769987Z","endpoints":[{"dns_record":"f058fd9c-8b1f-4367-a2e8-8306a75698f7.mgdb.fr-par.scw.cloud","id":"5469cab0-2bd6-41a4-a5b0-e6d8a8a28cd4","port":27017,"public_network":{}}],"id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","name":"test-mongodb-instance","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T13:10:32.881443Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:35:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f700dbc1-6805-49a7-a744-954a43efbd50 - status: 200 OK - code: 200 - duration: 129.551125ms - - id: 165 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/f058fd9c-8b1f-4367-a2e8-8306a75698f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"f058fd9c-8b1f-4367-a2e8-8306a75698f7","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:35:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - efa626b1-cbe6-4423-916d-74839c17129b - status: 404 Not Found - code: 404 - duration: 93.320834ms - - id: 166 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/snapshots/6045c61e-cb72-4f89-ad45-498bb39f1886 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"6045c61e-cb72-4f89-ad45-498bb39f1886","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 21 Jul 2025 13:35:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9c6c3f9-d203-48bc-8f4a-549fc0b44f95 - status: 404 Not Found - code: 404 - duration: 136.500667ms