diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index b0a3dec19..9c893236d 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -215,6 +215,24 @@ func ResourceInstance() *schema.Resource { }, Description: "List of tags [\"tag1\", \"tag2\", ...] attached to a MongoDB instance", }, + "snapshot_schedule_frequency_hours": { + Type: schema.TypeInt, + Optional: true, + Computed: true, + Description: "Snapshot schedule frequency in hours", + }, + "snapshot_schedule_retention_days": { + Type: schema.TypeInt, + Optional: true, + Computed: true, + Description: "Snapshot schedule retention in days", + }, + "is_snapshot_schedule_enabled": { + Type: schema.TypeBool, + Optional: true, + Computed: true, + Description: "Enable or disable automatic snapshot scheduling", + }, "settings": { Type: schema.TypeMap, Description: "Map of settings to define for the instance.", @@ -367,6 +385,11 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m any) return diag.FromErr(err) } + err = configureSnapshotScheduleOnCreate(ctx, d, mongodbAPI, region, res.ID) + if err != nil { + return diag.FromErr(err) + } + return ResourceInstanceRead(ctx, d, m) } @@ -401,6 +424,12 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m any) di _ = d.Set("created_at", instance.CreatedAt.Format(time.RFC3339)) _ = d.Set("region", instance.Region.String()) + if instance.SnapshotSchedule != nil { + _ = d.Set("snapshot_schedule_frequency_hours", int(instance.SnapshotSchedule.FrequencyHours)) + _ = d.Set("snapshot_schedule_retention_days", int(instance.SnapshotSchedule.RetentionDays)) + _ = d.Set("is_snapshot_schedule_enabled", instance.SnapshotSchedule.Enabled) + } + if instance.Volume != nil { _ = d.Set("volume_type", instance.Volume.Type) _ = d.Set("volume_size_in_gb", int(instance.Volume.SizeBytes/scw.GB)) @@ -553,6 +582,10 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m any) } } + if updateSnapshotScheduleFields(d, req) { + shouldUpdateInstance = true + } + if shouldUpdateInstance { _, err = mongodbAPI.UpdateInstance(req, scw.WithContext(ctx)) if err != nil { @@ -690,3 +723,61 @@ func ResourceInstanceDelete(ctx context.Context, d *schema.ResourceData, m any) return nil } + +func updateSnapshotScheduleFields(d *schema.ResourceData, req *mongodb.UpdateInstanceRequest) bool { + hasUpdates := false + + if d.HasChange("snapshot_schedule_frequency_hours") { + req.SnapshotScheduleFrequencyHours = types.ExpandUint32Ptr(d.Get("snapshot_schedule_frequency_hours")) + hasUpdates = true + } + + if d.HasChange("snapshot_schedule_retention_days") { + req.SnapshotScheduleRetentionDays = types.ExpandUint32Ptr(d.Get("snapshot_schedule_retention_days")) + hasUpdates = true + } + + if d.HasChange("is_snapshot_schedule_enabled") { + req.IsSnapshotScheduleEnabled = types.ExpandBoolPtr(d.Get("is_snapshot_schedule_enabled")) + hasUpdates = true + } + + return hasUpdates +} + +func configureSnapshotScheduleOnCreate(ctx context.Context, d *schema.ResourceData, mongodbAPI *mongodb.API, region scw.Region, instanceID string) error { + mustUpdate := false + updateReq := &mongodb.UpdateInstanceRequest{ + Region: region, + InstanceID: instanceID, + } + + if snapshotFrequency, ok := d.GetOk("snapshot_schedule_frequency_hours"); ok { + updateReq.SnapshotScheduleFrequencyHours = scw.Uint32Ptr(uint32(snapshotFrequency.(int))) + mustUpdate = true + } + + if snapshotRetention, ok := d.GetOk("snapshot_schedule_retention_days"); ok { + updateReq.SnapshotScheduleRetentionDays = scw.Uint32Ptr(uint32(snapshotRetention.(int))) + mustUpdate = true + } + + if snapshotEnabled, ok := d.GetOk("is_snapshot_schedule_enabled"); ok { + updateReq.IsSnapshotScheduleEnabled = scw.BoolPtr(snapshotEnabled.(bool)) + mustUpdate = true + } + + if mustUpdate { + _, err := mongodbAPI.UpdateInstance(updateReq, scw.WithContext(ctx)) + if err != nil { + return err + } + + _, err = waitForInstance(ctx, mongodbAPI, region, instanceID, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + } + + return nil +} diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 4bf6dd58d..2ccb3c135 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -95,6 +95,61 @@ func TestAccMongoDBInstance_VolumeUpdate(t *testing.T) { }) } +func TestAccMongoDBInstance_SnapshotSchedule(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 main { + name = "test-mongodb-snapshot-schedule" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + snapshot_schedule_frequency_hours = 24 + snapshot_schedule_retention_days = 7 + is_snapshot_schedule_enabled = true + } + `, + Check: resource.ComposeTestCheckFunc( + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "snapshot_schedule_frequency_hours", "24"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "snapshot_schedule_retention_days", "7"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "is_snapshot_schedule_enabled", "true"), + ), + }, + { + Config: ` + resource scaleway_mongodb_instance main { + name = "test-mongodb-snapshot-schedule" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + snapshot_schedule_frequency_hours = 12 + snapshot_schedule_retention_days = 14 + is_snapshot_schedule_enabled = false + } + `, + Check: resource.ComposeTestCheckFunc( + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "snapshot_schedule_frequency_hours", "12"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "snapshot_schedule_retention_days", "14"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "is_snapshot_schedule_enabled", "false"), + ), + }, + }, + }) +} + func TestAccMongoDBInstance_UpdateNameTagsUser(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() diff --git a/internal/services/mongodb/testdata/mongo-db-instance-snapshot-schedule.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-snapshot-schedule.cassette.yaml new file mode 100644 index 000000000..ccf3fcef5 --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-instance-snapshot-schedule.cassette.yaml @@ -0,0 +1,4076 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 322 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-snapshot-schedule","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: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:17: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: + - b7d816cd-0886-4d92-a65b-018572ef4c51 + status: 200 OK + code: 200 + duration: 1.212258375s + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:17: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: + - 97c468f0-4102-41b6-9223-ccf5a9e602ba + status: 200 OK + code: 200 + duration: 129.439625ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:17: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: + - 1eef06b0-313d-46e5-975e-cdd2ac6a287f + status: 200 OK + code: 200 + duration: 122.534416ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:17: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: + - 269f3614-9e20-4f96-843e-c9a9967bb23a + status: 200 OK + code: 200 + duration: 95.246ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:17: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: + - 2dc46046-0f19-413d-a895-72a03a7ae495 + status: 200 OK + code: 200 + duration: 76.330375ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:17: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: + - 9b5fc25d-971b-458a-8776-bcbbebaa7481 + status: 200 OK + code: 200 + duration: 103.284166ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:18: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: + - e8f0dffc-6842-4db8-a01c-5b8d5f828bf4 + status: 200 OK + code: 200 + duration: 144.78875ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:18: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: + - 8986d612-fab6-4be9-ac19-3f192398aa36 + status: 200 OK + code: 200 + duration: 113.320291ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:18: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: + - 18f9aa1d-0b72-4bd0-9948-ccd2e03c2187 + status: 200 OK + code: 200 + duration: 119.620042ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:18: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: + - 307bddf2-5800-4d42-a623-88482c86acd5 + status: 200 OK + code: 200 + duration: 128.382459ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:18: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: + - 28d17c5a-120a-4cc7-af50-c1bada08904a + status: 200 OK + code: 200 + duration: 104.319084ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:18: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: + - 669972e6-91fb-43db-a10f-8ddfae8fcc53 + status: 200 OK + code: 200 + duration: 108.678209ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:19: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: + - bd6e0c1e-b76f-457b-952f-f444b06a80ab + status: 200 OK + code: 200 + duration: 145.512541ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:19: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: + - fa1fdb50-d227-4140-953b-6da1232effa1 + status: 200 OK + code: 200 + duration: 108.377417ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:19: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: + - eeede8a1-9fb9-40d9-b95c-063fb5957924 + status: 200 OK + code: 200 + duration: 98.597541ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:19: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: + - b6c5888f-d526-4ed5-9bc1-859e845cc6a0 + status: 200 OK + code: 200 + duration: 121.396333ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:19: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: + - 5d86ed73-cb76-42e6-930a-783a56423f4a + status: 200 OK + code: 200 + duration: 105.259459ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:20: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: + - 97a9afe3-1c8e-439d-9d5b-b89656870735 + status: 200 OK + code: 200 + duration: 117.554083ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:20: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: + - 0dd1f9e0-ad75-4ecd-90a2-bc4f5f051027 + status: 200 OK + code: 200 + duration: 93.217542ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:20: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: + - d840ae00-c7ea-4207-bf97-d1761b1ee793 + status: 200 OK + code: 200 + duration: 92.072708ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:20: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: + - d291f996-7bef-479c-a9d5-d4520000e68b + status: 200 OK + code: 200 + duration: 243.595084ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:20: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: + - 258f6f20-0dee-4337-bbcf-5a4bdcf33216 + status: 200 OK + code: 200 + duration: 576.042417ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:20: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: + - 3848749c-f258-4c2d-98da-ecb2236e0fc2 + status: 200 OK + code: 200 + duration: 92.5255ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:21: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: + - 1c941b94-2d04-4e0e-944e-f483c340ea2a + status: 200 OK + code: 200 + duration: 95.977959ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:21: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: + - 7c64ed6d-efd4-4125-9c65-5336a892d557 + status: 200 OK + code: 200 + duration: 88.164667ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:21: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: + - 6ceadb84-03fa-4729-885d-d2d5256a652d + status: 200 OK + code: 200 + duration: 122.730333ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:21: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: + - 7d4cd454-3771-45da-81a1-cc1a52588d65 + status: 200 OK + code: 200 + duration: 102.152041ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:21: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: + - e52c196c-1074-445b-8230-1c72dd75bbac + status: 200 OK + code: 200 + duration: 175.617417ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:21: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: + - e2697c34-f9f7-4b6c-9497-341a71d53223 + status: 200 OK + code: 200 + duration: 174.15725ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:22: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: + - d6fa52c8-0c8a-4c22-a98e-984a8d5762d0 + status: 200 OK + code: 200 + duration: 84.108166ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:22: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: + - f33ffe09-8c9d-4771-a1eb-09921a54c3a5 + status: 200 OK + code: 200 + duration: 89.947791ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:22: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: + - 1b791584-a765-4565-afc0-56ed4a12c1f8 + status: 200 OK + code: 200 + duration: 96.461292ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:22: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: + - c4b1c7b0-1e9a-4998-bc40-e391bd1374d7 + status: 200 OK + code: 200 + duration: 94.429208ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:22: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: + - d7ec36eb-0516-4b73-a41b-6bbd661de91b + status: 200 OK + code: 200 + duration: 120.12225ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:22: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: + - d502b327-2715-4798-8d02-10712035da94 + status: 200 OK + code: 200 + duration: 87.987584ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:23: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: + - 9a4f4409-0b2a-490b-8d58-9a26f2bf1686 + status: 200 OK + code: 200 + duration: 175.073791ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:23: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: + - 6769aed4-71cf-4b58-9642-e26808432a76 + status: 200 OK + code: 200 + duration: 115.602792ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:23: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: + - 1dc3ea3c-d8a5-46fa-99cb-ec9d2dff1bd8 + status: 200 OK + code: 200 + duration: 108.037667ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:23: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: + - b150f4ad-104d-48e2-a38b-fd85d01fa594 + status: 200 OK + code: 200 + duration: 138.212583ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:23: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: + - 3f43dd5f-0f1f-45c7-8701-8eac236e6dc7 + status: 200 OK + code: 200 + duration: 97.988375ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:23: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: + - 625e66dc-b72f-4342-bd4a-86397e5b278d + status: 200 OK + code: 200 + duration: 93.417083ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:24: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: + - 06677024-6cde-4f94-9242-bd3fc1a456ac + status: 200 OK + code: 200 + duration: 98.621083ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:24: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: + - 8bcabb8b-c248-4d04-a622-b4e4f1f594b5 + status: 200 OK + code: 200 + duration: 173.821ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:24: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: + - 86f83541-6f9d-42b9-9343-e918f05a027c + status: 200 OK + code: 200 + duration: 107.651583ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:24: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: + - 65afb1d4-6d8f-422a-8a35-d1782f5aa755 + status: 200 OK + code: 200 + duration: 81.177834ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:24: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: + - 158011bf-7926-43a3-bd61-67d2ec4a3719 + status: 200 OK + code: 200 + duration: 415.138833ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:24: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: + - 8077740e-60e0-449a-8e29-cf17fd484675 + status: 200 OK + code: 200 + duration: 116.094209ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:25: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: + - 1089a4f6-5619-487f-842d-632cd6249960 + status: 200 OK + code: 200 + duration: 83.796583ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:25: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: + - 18c86fe2-0a75-4c07-81cb-309ff37c39be + status: 200 OK + code: 200 + duration: 203.269333ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:25: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: + - 17ba1c58-7286-4b65-96fb-51930ba89cfd + status: 200 OK + code: 200 + duration: 89.263292ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:25: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: + - dd573ad0-dafd-42df-a3a8-bc973ec1c643 + status: 200 OK + code: 200 + duration: 140.860917ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:25: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: + - b3060786-e0ab-4dc6-87af-137bc0be6311 + status: 200 OK + code: 200 + duration: 97.08525ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:25: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: + - 191c7c86-1467-4d86-87af-d7eae0b3849f + status: 200 OK + code: 200 + duration: 99.374375ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:26: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: + - 38748dd6-4dec-4cab-bd2f-bd71bc3863fb + status: 200 OK + code: 200 + duration: 132.269792ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:26: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: + - b39f9b92-24ee-4396-8c15-880736b5e4d9 + status: 200 OK + code: 200 + duration: 96.9735ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:26: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: + - 54b6918c-4761-4fb0-8c36-e00599aa068b + status: 200 OK + code: 200 + duration: 101.530125ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:26: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: + - 13258e1c-2cce-4e38-a802-03ecfc8f606e + status: 200 OK + code: 200 + duration: 85.753875ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:26: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: + - 28ae90b1-9d4e-4c80-a615-950dcaf1b121 + status: 200 OK + code: 200 + duration: 359.856208ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:26: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: + - 5f887097-a88b-49a8-8891-9cb373eea489 + status: 200 OK + code: 200 + duration: 136.500042ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 671 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 6874fdce-cfa8-4049-9925-5468b1d93e3d + status: 200 OK + code: 200 + duration: 83.63225ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 664 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-09-05T13:17:18.223514Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "664" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - fe559eab-9953-43e5-900e-1e945ff377dc + status: 200 OK + code: 200 + duration: 89.928917ms + - id: 61 + 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: '{"snapshot_schedule_frequency_hours":24,"snapshot_schedule_retention_days":7,"is_snapshot_schedule_enabled":true}' + 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 663 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":true,"frequency_hours":24,"last_run":null,"next_update":"2025-09-06T13:27:16.508854Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "663" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - f4d2abd3-9964-43a1-94d7-c54add07bbec + status: 200 OK + code: 200 + duration: 118.798292ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 663 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":true,"frequency_hours":24,"last_run":null,"next_update":"2025-09-06T13:27:16.508854Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "663" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 6bcbc1d7-8c2e-45bd-934c-43724fc6ca95 + status: 200 OK + code: 200 + duration: 29.449833ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 663 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":true,"frequency_hours":24,"last_run":null,"next_update":"2025-09-06T13:27:16.508854Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "663" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 68f17516-40f0-4572-a0ee-2c3732c06bdf + status: 200 OK + code: 200 + duration: 89.860042ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1083 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUIvekNDQWJHZ0F3SUJBZ0lRS2tTQmNLZWZiMkYybG5uUmdRU1l1REFGQmdNclpYQXdjREVMTUFrR0ExVUUKQmhNQ1JsSXhEakFNQmdOVkJBY1RCVkJoY21sek1Sa3dGd1lEVlFRS0V4QlRZMkZzWlhkaGVTQk5iMjVuYjBSQwpNVFl3TkFZRFZRUUxFeTFKYm5OMFlXNWpaU0F3WldKbVlUY3pNaTA0WXpoaExUUmtaR010T1RJek1DMDFaRFF3Ck5URXpNekUwWldRd0hoY05NalV3T1RBMU1UTXhOekU0V2hjTk16VXdPVEF6TVRNeE56RTRXakJ3TVFzd0NRWUQKVlFRR0V3SkdVakVPTUF3R0ExVUVCeE1GVUdGeWFYTXhHVEFYQmdOVkJBb1RFRk5qWVd4bGQyRjVJRTF2Ym1kdgpSRUl4TmpBMEJnTlZCQXNUTFVsdWMzUmhibU5sSURCbFltWmhOek15TFRoak9HRXROR1JrWXkwNU1qTXdMVFZrCk5EQTFNVE16TVRSbFpEQXFNQVVHQXl0bGNBTWhBQXRoNlNFWDk0QkFJVU9ISXlNck5VTnFnZGJ4TXVDTFJTcisKQWU2b3V3Y3lvMkV3WHpBT0JnTlZIUThCQWY4RUJBTUNBZ1F3SFFZRFZSMGxCQll3RkFZSUt3WUJCUVVIQXdJRwpDQ3NHQVFVRkJ3TUJNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdIUVlEVlIwT0JCWUVGUHRwMXNubCttYTFwMVhYCnZ1SFJ5emEvQWZNZU1BVUdBeXRsY0FOQkFNSFNiMzIzbVdOMlFJR21CSHZXZ1AwdjFEUmFVWXZSc1I0Wm5kQnoKbWJEN1hWSmJIblFVdzBJUjFrdHp0cVJZMHVseXhyNStETDNjT2JpMXB6bHNRQWc9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1083" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 130fa3a8-e000-4693-8b9d-36ab37d9a6a4 + status: 200 OK + code: 200 + duration: 21.105292ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 663 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":true,"frequency_hours":24,"last_run":null,"next_update":"2025-09-06T13:27:16.508854Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "663" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - b27a2dc7-0833-4201-a2ef-5e80fd1f5be4 + status: 200 OK + code: 200 + duration: 25.583083ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 663 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":true,"frequency_hours":24,"last_run":null,"next_update":"2025-09-06T13:27:16.508854Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "663" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - a4f29826-e002-4aa7-bce8-8fe3acb404a2 + status: 200 OK + code: 200 + duration: 109.16925ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1083 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUIvekNDQWJHZ0F3SUJBZ0lRS2tTQmNLZWZiMkYybG5uUmdRU1l1REFGQmdNclpYQXdjREVMTUFrR0ExVUUKQmhNQ1JsSXhEakFNQmdOVkJBY1RCVkJoY21sek1Sa3dGd1lEVlFRS0V4QlRZMkZzWlhkaGVTQk5iMjVuYjBSQwpNVFl3TkFZRFZRUUxFeTFKYm5OMFlXNWpaU0F3WldKbVlUY3pNaTA0WXpoaExUUmtaR010T1RJek1DMDFaRFF3Ck5URXpNekUwWldRd0hoY05NalV3T1RBMU1UTXhOekU0V2hjTk16VXdPVEF6TVRNeE56RTRXakJ3TVFzd0NRWUQKVlFRR0V3SkdVakVPTUF3R0ExVUVCeE1GVUdGeWFYTXhHVEFYQmdOVkJBb1RFRk5qWVd4bGQyRjVJRTF2Ym1kdgpSRUl4TmpBMEJnTlZCQXNUTFVsdWMzUmhibU5sSURCbFltWmhOek15TFRoak9HRXROR1JrWXkwNU1qTXdMVFZrCk5EQTFNVE16TVRSbFpEQXFNQVVHQXl0bGNBTWhBQXRoNlNFWDk0QkFJVU9ISXlNck5VTnFnZGJ4TXVDTFJTcisKQWU2b3V3Y3lvMkV3WHpBT0JnTlZIUThCQWY4RUJBTUNBZ1F3SFFZRFZSMGxCQll3RkFZSUt3WUJCUVVIQXdJRwpDQ3NHQVFVRkJ3TUJNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdIUVlEVlIwT0JCWUVGUHRwMXNubCttYTFwMVhYCnZ1SFJ5emEvQWZNZU1BVUdBeXRsY0FOQkFNSFNiMzIzbVdOMlFJR21CSHZXZ1AwdjFEUmFVWXZSc1I0Wm5kQnoKbWJEN1hWSmJIblFVdzBJUjFrdHp0cVJZMHVseXhyNStETDNjT2JpMXB6bHNRQWc9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1083" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 7bb9bf7f-8948-479f-bf5f-9da582370474 + status: 200 OK + code: 200 + duration: 20.149792ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 663 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":true,"frequency_hours":24,"last_run":null,"next_update":"2025-09-06T13:27:16.508854Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "663" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 7f246b59-9ef1-4c79-8626-19592b0b0b30 + status: 200 OK + code: 200 + duration: 26.377ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1083 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUIvekNDQWJHZ0F3SUJBZ0lRS2tTQmNLZWZiMkYybG5uUmdRU1l1REFGQmdNclpYQXdjREVMTUFrR0ExVUUKQmhNQ1JsSXhEakFNQmdOVkJBY1RCVkJoY21sek1Sa3dGd1lEVlFRS0V4QlRZMkZzWlhkaGVTQk5iMjVuYjBSQwpNVFl3TkFZRFZRUUxFeTFKYm5OMFlXNWpaU0F3WldKbVlUY3pNaTA0WXpoaExUUmtaR010T1RJek1DMDFaRFF3Ck5URXpNekUwWldRd0hoY05NalV3T1RBMU1UTXhOekU0V2hjTk16VXdPVEF6TVRNeE56RTRXakJ3TVFzd0NRWUQKVlFRR0V3SkdVakVPTUF3R0ExVUVCeE1GVUdGeWFYTXhHVEFYQmdOVkJBb1RFRk5qWVd4bGQyRjVJRTF2Ym1kdgpSRUl4TmpBMEJnTlZCQXNUTFVsdWMzUmhibU5sSURCbFltWmhOek15TFRoak9HRXROR1JrWXkwNU1qTXdMVFZrCk5EQTFNVE16TVRSbFpEQXFNQVVHQXl0bGNBTWhBQXRoNlNFWDk0QkFJVU9ISXlNck5VTnFnZGJ4TXVDTFJTcisKQWU2b3V3Y3lvMkV3WHpBT0JnTlZIUThCQWY4RUJBTUNBZ1F3SFFZRFZSMGxCQll3RkFZSUt3WUJCUVVIQXdJRwpDQ3NHQVFVRkJ3TUJNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdIUVlEVlIwT0JCWUVGUHRwMXNubCttYTFwMVhYCnZ1SFJ5emEvQWZNZU1BVUdBeXRsY0FOQkFNSFNiMzIzbVdOMlFJR21CSHZXZ1AwdjFEUmFVWXZSc1I0Wm5kQnoKbWJEN1hWSmJIblFVdzBJUjFrdHp0cVJZMHVseXhyNStETDNjT2JpMXB6bHNRQWc9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1083" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 44ee7cac-c18a-496c-b9cc-712e87feab64 + status: 200 OK + code: 200 + duration: 24.910459ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 115 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"snapshot_schedule_frequency_hours":12,"snapshot_schedule_retention_days":14,"is_snapshot_schedule_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/mongodb/v1/regions/fr-par/instances/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 665 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":12,"last_run":null,"next_update":"2025-09-06T01:27:19.075655Z","retention_days":14},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "665" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 73fa9810-9fae-4e0c-866e-2492c4137c21 + status: 200 OK + code: 200 + duration: 123.032ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 665 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":12,"last_run":null,"next_update":"2025-09-06T01:27:19.075655Z","retention_days":14},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "665" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - e0ad5482-35c2-4224-8396-da422a896b9a + status: 200 OK + code: 200 + duration: 172.117833ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 665 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":12,"last_run":null,"next_update":"2025-09-06T01:27:19.075655Z","retention_days":14},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "665" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 373a8ad9-07b8-4f54-a203-bd0cd83dedb1 + status: 200 OK + code: 200 + duration: 100.539417ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1083 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUIvekNDQWJHZ0F3SUJBZ0lRS2tTQmNLZWZiMkYybG5uUmdRU1l1REFGQmdNclpYQXdjREVMTUFrR0ExVUUKQmhNQ1JsSXhEakFNQmdOVkJBY1RCVkJoY21sek1Sa3dGd1lEVlFRS0V4QlRZMkZzWlhkaGVTQk5iMjVuYjBSQwpNVFl3TkFZRFZRUUxFeTFKYm5OMFlXNWpaU0F3WldKbVlUY3pNaTA0WXpoaExUUmtaR010T1RJek1DMDFaRFF3Ck5URXpNekUwWldRd0hoY05NalV3T1RBMU1UTXhOekU0V2hjTk16VXdPVEF6TVRNeE56RTRXakJ3TVFzd0NRWUQKVlFRR0V3SkdVakVPTUF3R0ExVUVCeE1GVUdGeWFYTXhHVEFYQmdOVkJBb1RFRk5qWVd4bGQyRjVJRTF2Ym1kdgpSRUl4TmpBMEJnTlZCQXNUTFVsdWMzUmhibU5sSURCbFltWmhOek15TFRoak9HRXROR1JrWXkwNU1qTXdMVFZrCk5EQTFNVE16TVRSbFpEQXFNQVVHQXl0bGNBTWhBQXRoNlNFWDk0QkFJVU9ISXlNck5VTnFnZGJ4TXVDTFJTcisKQWU2b3V3Y3lvMkV3WHpBT0JnTlZIUThCQWY4RUJBTUNBZ1F3SFFZRFZSMGxCQll3RkFZSUt3WUJCUVVIQXdJRwpDQ3NHQVFVRkJ3TUJNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdIUVlEVlIwT0JCWUVGUHRwMXNubCttYTFwMVhYCnZ1SFJ5emEvQWZNZU1BVUdBeXRsY0FOQkFNSFNiMzIzbVdOMlFJR21CSHZXZ1AwdjFEUmFVWXZSc1I0Wm5kQnoKbWJEN1hWSmJIblFVdzBJUjFrdHp0cVJZMHVseXhyNStETDNjT2JpMXB6bHNRQWc9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1083" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - d9110b5c-34f3-46d5-81a7-17c1c297d1fc + status: 200 OK + code: 200 + duration: 23.297958ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 665 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":12,"last_run":null,"next_update":"2025-09-06T01:27:19.075655Z","retention_days":14},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "665" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - b02ea901-5d5a-4934-bd2c-c08714a64d29 + status: 200 OK + code: 200 + duration: 36.630375ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 665 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":12,"last_run":null,"next_update":"2025-09-06T01:27:19.075655Z","retention_days":14},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "665" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 97f93c15-7d76-4b60-ac1b-552d2123a5d4 + status: 200 OK + code: 200 + duration: 85.197708ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1083 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUIvekNDQWJHZ0F3SUJBZ0lRS2tTQmNLZWZiMkYybG5uUmdRU1l1REFGQmdNclpYQXdjREVMTUFrR0ExVUUKQmhNQ1JsSXhEakFNQmdOVkJBY1RCVkJoY21sek1Sa3dGd1lEVlFRS0V4QlRZMkZzWlhkaGVTQk5iMjVuYjBSQwpNVFl3TkFZRFZRUUxFeTFKYm5OMFlXNWpaU0F3WldKbVlUY3pNaTA0WXpoaExUUmtaR010T1RJek1DMDFaRFF3Ck5URXpNekUwWldRd0hoY05NalV3T1RBMU1UTXhOekU0V2hjTk16VXdPVEF6TVRNeE56RTRXakJ3TVFzd0NRWUQKVlFRR0V3SkdVakVPTUF3R0ExVUVCeE1GVUdGeWFYTXhHVEFYQmdOVkJBb1RFRk5qWVd4bGQyRjVJRTF2Ym1kdgpSRUl4TmpBMEJnTlZCQXNUTFVsdWMzUmhibU5sSURCbFltWmhOek15TFRoak9HRXROR1JrWXkwNU1qTXdMVFZrCk5EQTFNVE16TVRSbFpEQXFNQVVHQXl0bGNBTWhBQXRoNlNFWDk0QkFJVU9ISXlNck5VTnFnZGJ4TXVDTFJTcisKQWU2b3V3Y3lvMkV3WHpBT0JnTlZIUThCQWY4RUJBTUNBZ1F3SFFZRFZSMGxCQll3RkFZSUt3WUJCUVVIQXdJRwpDQ3NHQVFVRkJ3TUJNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdIUVlEVlIwT0JCWUVGUHRwMXNubCttYTFwMVhYCnZ1SFJ5emEvQWZNZU1BVUdBeXRsY0FOQkFNSFNiMzIzbVdOMlFJR21CSHZXZ1AwdjFEUmFVWXZSc1I0Wm5kQnoKbWJEN1hWSmJIblFVdzBJUjFrdHp0cVJZMHVseXhyNStETDNjT2JpMXB6bHNRQWc9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1083" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 964d621f-c68e-4daf-acce-3b82dcb315ed + status: 200 OK + code: 200 + duration: 22.169708ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 665 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":12,"last_run":null,"next_update":"2025-09-06T01:27:19.075655Z","retention_days":14},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "665" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 5a480370-3e79-421c-b4df-8c02515bb3b9 + status: 200 OK + code: 200 + duration: 78.028125ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 554 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","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: + - "554" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 2c73ef35-bb5e-4c16-9034-d50ba804064b + status: 200 OK + code: 200 + duration: 163.942917ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 668 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":12,"last_run":null,"next_update":"2025-09-06T01:27:19.075655Z","retention_days":14},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "668" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 6e786e91-c7a4-4a79-92b7-b3c4973c5cd5 + status: 200 OK + code: 200 + duration: 24.278708ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 668 + uncompressed: false + body: '{"created_at":"2025-09-05T13:17:17.813734Z","endpoints":[{"dns_record":"0ebfa732-8c8a-4ddc-9230-5d40513314ed.mgdb.fr-par.scw.cloud","id":"7966b94d-d3db-4417-a54e-bbd821c9f60b","port":27017,"public_network":{}}],"id":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","name":"test-mongodb-snapshot-schedule","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":12,"last_run":null,"next_update":"2025-09-06T01:27:19.075655Z","retention_days":14},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "668" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 4d899a84-5f77-4bfc-b232-d13dc99b897d + status: 200 OK + code: 200 + duration: 201.877917ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + 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":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - bef4152f-5e9e-4271-a6b2-03a865cfb454 + status: 404 Not Found + code: 404 + duration: 35.522667ms + - 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/0ebfa732-8c8a-4ddc-9230-5d40513314ed + 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":"0ebfa732-8c8a-4ddc-9230-5d40513314ed","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 05 Sep 2025 13:27: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: + - 79839627-65f0-4e9b-b1df-f45ab4e2b2bf + status: 404 Not Found + code: 404 + duration: 20.186875ms diff --git a/templates/resources/mongodb_instance.md.tmpl b/templates/resources/mongodb_instance.md.tmpl index 81d1ec9ff..190c7fa64 100644 --- a/templates/resources/mongodb_instance.md.tmpl +++ b/templates/resources/mongodb_instance.md.tmpl @@ -75,6 +75,24 @@ resource "scaleway_mongodb_instance" "main" { } ``` +### With Snapshot Scheduling + +```terraform +resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-with-snapshots" + 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 + + # Snapshot scheduling configuration + snapshot_schedule_frequency_hours = 24 + snapshot_schedule_retention_days = 7 + is_snapshot_schedule_enabled = true +} +``` ### Restore From Snapshot @@ -107,6 +125,12 @@ The following arguments are supported: - `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#regions) in which the MongoDB® instance should be created. - `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the project the MongoDB® instance is associated with. +### Snapshot Scheduling + +- `snapshot_schedule_frequency_hours` - (Optional) Snapshot schedule frequency in hours. +- `snapshot_schedule_retention_days` - (Optional) Snapshot schedule retention in days. +- `is_snapshot_schedule_enabled` - (Optional) Enable or disable automatic snapshot scheduling. + ~> **Important** If neither private_network nor public_network is specified, a public network endpoint is created by default. @@ -130,6 +154,9 @@ In addition to all arguments above, the following attributes are exported: - `id` - The ID of the endpoint. - `port` - TCP port of the endpoint. - `dns_records` - List of DNS records for your endpoint. +- `snapshot_schedule_frequency_hours` - Snapshot schedule frequency in hours. +- `snapshot_schedule_retention_days` - Snapshot schedule retention in days. +- `is_snapshot_schedule_enabled` - Whether automatic snapshot scheduling is enabled. - `tls_certificate` - The PEM-encoded TLS certificate for the MongoDB® instance, if available. ## Import